question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
To which series does the character of Londo Mollari belong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Londo_Mollari onto:series ?uri }
lcquad
What company's leader is Edwin Catmull?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople <http://dbpedia.org/resource/Edwin_Catmull> . ?uri rdf:type onto:Company}
lcquad
How many different layouts do cars designed by Oliver Boulay have?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer <http://dbpedia.org/resource/Olivier_Boulay> . ?x onto:layout ?uri . }
lcquad
Whihc state of Timothy J. Roemer is also the location city of Dad's Root Beer ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dad's_Root_Beer> prop:locationCity ?uri. <http://dbpedia.org/resource/Timothy_J._Roemer> prop:state ?uri}
lcquad
What is the type of Naval Station Bremerton ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Naval_Station_Bremerton prop:type ?uri }
lcquad
Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bordesley_railway_station prop:borough ?uri. res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri}
lcquad
What are some movies written by British writers?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:nationality <http://dbpedia.org/resource/British_people> . ?uri onto:writer ?x . ?uri rdf:type onto:Film}
lcquad
Which university is led by Jay Gogue?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:president <http://dbpedia.org/resource/Jay_Gogue> . ?uri rdf:type onto:University}
lcquad
Was Michael Schumacher a pole driver in the 1999 GP?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:1999_Japanese_Grand_Prix prop:poleDriver res:Michael_Schumacher }
lcquad
Count the number of artists who trained at the San Francisco Art Institute?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:training <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri rdf:type onto:Artist}
lcquad
What tv shows were born out of a collaboration of playtone and dreamworks?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:company <http://dbpedia.org/resource/Playtone> . ?uri onto:company <http://dbpedia.org/resource/DreamWorks_Television> . ?uri rdf:type onto:TelevisionShow}
lcquad
What games can be played in schools founded by Fr. Orlando?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy <http://dbpedia.org/resource/Fr._Orlando> . ?x onto:sport ?uri . ?x rdf:type onto:School}
lcquad
Is Ethics the main interests of Henry David Thoreau?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Henry_David_Thoreau prop:mainInterests res:Ethics }
lcquad
Was Elizabeth Ann Seton canonized by Pope Paul VI?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Elizabeth_Ann_Seton prop:canonizedBy res:Pope_Paul_VI }
lcquad
List the leaders of the government agencies whose jurisdiction was German-occupied Europe.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:jurisdiction <http://dbpedia.org/resource/German-occupied_Europe> . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}
lcquad
List the cast member of the movies whose producer is Mark Johnson.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:producer <http://dbpedia.org/resource/Mark_Johnson_(producer)> . ?x onto:starring ?uri . ?x rdf:type onto:Film}
lcquad
Which city was designed by saleen Pator which is also the birht location of Jimmy Diggs ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri. res:Jimmy_Diggs onto:birthPlace ?uri}
lcquad
Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:predecessor <http://dbpedia.org/resource/Boeing_Vertol_CH-46_Sea_Knight> . ?uri prop:products ?x . ?uri rdf:type onto:Company}
lcquad
What is the birth place of music artists which were associated with Albert Ayler ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Albert_Ayler> prop:associatedActs ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:MusicalArtist}
lcquad
What is the religious affiliation of Wickramabahu Central College (National School) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wickramabahu_Central_College_(National_School)> prop:religiousAffiliation ?uri }
lcquad
Name the nearest city to Lake Victoria?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lake_Victoria onto:nearestCity ?uri }
lcquad
Where is the tombstone of Johannes Gerhardus Strijdom?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Johannes_Gerhardus_Strijdom prop:restingplace ?uri }
lcquad
What is the common award won by Charles LeMaire and Eric Roth
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Charles_LeMaire prop:awards ?uri. res:Eric_Roth onto:award ?uri}
lcquad
Was Gareth Southgate a manager of Middlesbrough F.C.?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Gareth_Southgate prop:managerclubs res:Middlesbrough_F.C. }
lcquad
What is the total number of builder of the military structures whose builder is also United States?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:builder <http://dbpedia.org/resource/United_States> . ?x onto:builder ?uri }
lcquad
Tell me the total number of organizations who maintain the bridges made by the malaysian PWD?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer <http://dbpedia.org/resource/Malaysian_Public_Works_Department> . ?x onto:maintainedBy ?uri . ?uri rdf:type onto:Organis...
lcquad
How many shows does HBO have?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:company <http://dbpedia.org/resource/HBO> . ?uri rdf:type onto:TelevisionShow}
lcquad
How many people have been canonized by Pope Benedict XVI?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:canonizedBy <http://dbpedia.org/resource/Pope_Benedict_XVI> . }
lcquad
What party was in majority of Fourth Legislative Assembly of Delhi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fourth_Legislative_Assembly_of_Delhi prop:party ?uri }
lcquad
Bud Adams owns which american football team?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:owner <http://dbpedia.org/resource/Bud_Adams> . ?uri rdf:type onto:AmericanFootballTeam}
lcquad
Whose work is in the Musee d'orsay?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:museum <http://dbpedia.org/resource/Musée_d'Orsay> . ?x prop:artist ?uri . ?x rdf:type onto:Artwork}
lcquad
For which team did both Butch Metzger and Brian Horwitz debuted ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri. res:Brian_Horwitz onto:debutTeam ?uri . }
lcquad
Does the Sicklefin lemon shark belong in the animal kingdom?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Sicklefin_lemon_shark onto:kingdom res:Animal }
lcquad
Does the stylistic origins of Plena lie in the Caribbean?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Plena prop:stylisticOrigins res:Caribbean }
lcquad
What are the famous Uni Toronto scientists known for?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:almaMater <http://dbpedia.org/resource/University_of_Toronto> . ?x onto:knownFor ?uri . ?x rdf:type onto:Scientist}
lcquad
Who used to skate with the pupils of Laureano Ibarra?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:coach <http://dbpedia.org/resource/Laureano_Ibarra> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}
lcquad
How many books have been penned by Miguel de Cervantes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:author <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri rdf:type onto:Book}
lcquad
Name the river flowing through Reading and source place as Gloucestershire ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri onto:sourcePlace <http://dbpedia.org/resource/Gloucestershire> . ?uri rdf:type onto:River}
lcquad
Count the band members of Skull Gang?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Skull_Gang> onto:bandMember ?uri . ?uri rdf:type onto:Person}
lcquad
In which teams have league members of the Czech Extraliga played previously?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:league res:Czech_Extraliga . ?x onto:formerTeam ?uri . }
lcquad
Which country's people have graduated from Ghana School of Law?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:almaMater <http://dbpedia.org/resource/Ghana_School_of_Law> . ?x onto:nationality ?uri . ?x rdf:type onto:Person}
lcquad
What does the river flow into, whose left tributary is Bukovica?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary <http://dbpedia.org/resource/Bukovica_(river)> . ?x onto:mouthCountry ?uri . }
lcquad
For which team does hunter pence play for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Hunter_Pence onto:team ?uri }
lcquad
Name the ground of Al-Rayan SC ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al-Rayan_SC> onto:ground ?uri }
lcquad
In which cities were the chess grand masters born?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:title <http://dbpedia.org/resource/Grandmaster_(chess)> . ?x onto:birthPlace ?uri . }
lcquad
Which city's governing body is led by Bruce Harrell?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:leader res:Bruce_Harrell . ?uri prop:governingBody ?x . }
lcquad
What band was Afrika Baby Bam a part of, and often performed with Q Tip?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Afrika_Baby_Bam> onto:associatedBand ?uri. <http://dbpedia.org/resource/Q-Tip_(musician)> onto:associatedMusicalArtist ?uri}
lcquad
Which siler medalist of the Tennis at the 2012 Summer Olympics Men's singles was also the flagbearer of the Switzerland at the 2008 Summer Olympics
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tennis_at_the_2012_Summer_Olympics_–_Men's_singles> onto:silverMedalist ?uri. <http://dbpedia.org/resource/Switzerland_at_the_2008_Summer_Olympics> prop:flagbearer ?uri}
lcquad
Who is the prime minister of the successor of Kingsley Wood?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kingsley_Wood onto:successor ?x . ?x prop:primeminister ?uri . }
lcquad
List the common relegion affiliation of khadra Haji Ismail and Yasmin khatun ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Khadra_Haji_Ismail_Geid prop:religion ?uri. res:Yasmin_Khatun onto:religion ?uri}
lcquad
Where was Thomy Bourdelle born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Thomy_Bourdelle prop:placeOfBirth ?uri . }
lcquad
How many bands are based in London?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:hometown <http://dbpedia.org/resource/London> . ?uri rdf:type onto:Band}
lcquad
Name few TV shows aired by Prime Time Entertainment Network?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:network <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri rdf:type onto:TelevisionShow}
lcquad
Which president of Lance Adams-Schneider had nickname Daniel O'Regan ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lance_Adams-Schneider> prop:president ?uri. <http://dbpedia.org/resource/Daniel_O'Regan> prop:nickname ?uri}
lcquad
WHo gave the lyrcis of Doonesbury ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> onto:lyrics ?uri }
lcquad
Which series are Lennier and Londo Mollari both from?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lennier onto:series ?uri. res:Londo_Mollari onto:series ?uri . }
lcquad
Who coached the marquet golden eagels during 2013
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2013–14_Marquette_Golden_Eagles_men's_basketball_team> onto:coach ?uri }
lcquad
Give me a list of computers whose CPU is in the US.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:locationCity <http://dbpedia.org/resource/United_States> . ?uri onto:cpu ?x . ?uri rdf:type onto:InformationAppliance}
lcquad
What is that something which made Breann McGregor famous, and Frank Thorne received as an award?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Frank_Thorne onto:award ?uri. res:Breann_McGregor prop:knownFor ?uri}
lcquad
Which things have been located, where governance is Houston City Council?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:Houston_City_Council . ?uri onto:location ?x . }
lcquad
What beverages originate in Leuven?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:origin <http://dbpedia.org/resource/Leuven> . ?uri rdf:type onto:Beverage}
lcquad
Who are the parents of Charles Phelps Taft II and Robert A. Taft?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:child res:Charles_Phelps_Taft_II . ?uri onto:child res:Robert_A._Taft . }
lcquad
What are the different religions followed by presidents whose prime minister was Surayud Chulanont?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:primeminister <http://dbpedia.org/resource/Surayud_Chulanont> . ?x onto:religion ?uri . ?x rdf:type onto:President}
lcquad
How many prime ministers did the predecessor of Duncan Sandys serve?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Duncan_Sandys> prop:successor ?x . ?x prop:primeminister ?uri . }
lcquad
Name the city served by Juhu Aerodrome ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Juhu_Aerodrome prop:cityServed ?uri }
lcquad
What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities <http://dbpedia.org/resource/Lancy> . ?uri onto:mayor <http://dbpedia.org/resource/Esther_Alder> . ?uri rdf:t...
lcquad
List the notable works of the writer of The Tony Randall Show ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Tony_Randall_Show prop:writer ?x . ?x onto:notableWork ?uri . }
lcquad
How many cars succeed the cars assembled in Canada?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly <http://dbpedia.org/resource/Canada> . ?x onto:predecessor ?uri . ?uri rdf:type onto:Automobile}
lcquad
Where has the employee of Columbia Records worked ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Columbia_Records . ?x onto:employer ?uri . }
lcquad
What is the birth place of the cast of Lagnacha Dhumdhadaka?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lagnacha_Dhumdhadaka prop:starring ?x . ?x prop:placeOfBirth ?uri . }
lcquad
Whci co founder of Sea gayle Music is also the artist of Brad Paisley Discography /
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Brad_Paisley_discography prop:artist ?uri. res:Sea_Gayle_Music prop:founder ?uri}
lcquad
Which wine region of Bogdanua is the mouth country of Upper Neretva ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri. res:Upper_Neretva onto:mouthCountry ?uri}
lcquad
Which television show's network is BBC HD and is related to Doctor Who Confidential?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:network <http://dbpedia.org/resource/BBC_HD> . ?uri onto:related <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri rdf:type onto:TelevisionShow}
lcquad
Name the products of Den norske Bank ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Den_norske_Bank prop:products ?uri }
lcquad
In how many places have people canonized by John Paul II died?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:canonizedBy <http://dbpedia.org/resource/Pope_John_Paul_II> . ?x prop:deathPlace ?uri . ?uri rdf:type onto:Place}
lcquad
Where does the river flow into, which starts at the Sierra Madre de Chiapas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:source <http://dbpedia.org/resource/Sierra_Madre_de_Chiapas> . ?x prop:mouthCountry ?uri . ?x rdf:type onto:River}
lcquad
From which country did the Mauritius bank and the national commerce bank emerge?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:National_Commercial_Bank_Mauritius prop:locationCountry ?uri. res:Mauritius_Bank prop:locationCountry ?uri . }
lcquad
Who are the shareholder of the broadcast networks whose owning company is Jamie Kellner?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany <http://dbpedia.org/resource/Jamie_Kellner> . ?x prop:owner ?uri . ?x rdf:type onto:BroadcastNetwork}
lcquad
The Prime minister who worked in the Khmer Issarak follows which religion?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch <http://dbpedia.org/resource/Khmer_Issarak> . ?x onto:religion ?uri . ?x rdf:type onto:PrimeMinister}
lcquad
Which country does league of Nguendula Filipe belongs to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Nguendula_Filipe onto:league ?x . ?x prop:country ?uri . }
lcquad
Is the Bucyrus MT6300AC assembled in north america?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Bucyrus_MT6300AC prop:assembly res:North_America }
lcquad
Which rivers flow into the lower manhatten?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain res:Lower_Manhattan }
lcquad
Who is the founder of Pittsburgh ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri }
lcquad
What are the airlines whose hub is San Francisco International Airport?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:hubs <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri rdf:type onto:Airline}
lcquad
Who rented the stadium where the UFC 152 take place?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UFC_152> prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}
lcquad
Which appliance has cpu from Freescale Semiconductor and Marvell Technology Group?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:cpu <http://dbpedia.org/resource/Freescale_Semiconductor> . ?uri onto:cpu <http://dbpedia.org/resource/Marvell_Technology_Group> . ?uri rdf:type onto:InformationAppliance}
lcquad
What is the place where the mayor's wife is Jean-Marc Germain?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:spouse <http://dbpedia.org/resource/Jean-Marc_Germain> . ?uri onto:mayor ?x . ?uri rdf:type onto:Place}
lcquad
Was 2658 Gingerich invented in Harvard?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:2658_Gingerich onto:discoverer res:Harvard_College }
lcquad
Which religions' people fought in the Miao rebellion?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miao_Rebellion_(1795–1806)> prop:combatant ?x . ?x onto:religion ?uri . }
lcquad
Which universities are alma mater to Charles Plosser?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Charles_Plosser prop:almaMater ?uri }
lcquad
What is the constituency of Santo Versace?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Santo_Versace prop:constituency ?uri }
lcquad
Count all the shows whose music composers are in Oysterhead.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedMusicalArtist <http://dbpedia.org/resource/Oysterhead> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:Televisio...
lcquad
List the significant building of the architect who also designed Kiev?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding <http://dbpedia.org/resource/Kiev> . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}
lcquad
How many other architect are there of the historic places whose architect is also Stanford White ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect <http://dbpedia.org/resource/Stanford_White> . ?x onto:architect ?uri }
lcquad
What is the deathplace of the rugby player who is the relatives of Anton Oliver ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Anton_Oliver prop:relatives ?x . ?x onto:deathPlace ?uri . }
lcquad
What is the alma mater of the Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Marshall_Fletcher_McCallie prop:almaMater ?uri. res:Vanderbilt_University_Medical_Center prop:affiliation ?uri}
lcquad
Who has had been the tenant of the stadium built by PCL construction firm?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:builder <http://dbpedia.org/resource/PCL_Construction> . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}
lcquad
Does the Amazon River start in Arequipa Region?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Amazon_River prop:sourceRegion res:Arequipa_Region }
lcquad
Is San Salvador Island a part of the Bahamas?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:San_Salvador_Island onto:archipelago res:The_Bahamas }
lcquad
List the people educated at Harvard-Westlake School and has resting place as Palo Alto, California?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:almaMater <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri prop:restingPlace <http://dbpedia.org/resource/Palo_Alto,_Califor...
lcquad