question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Who are the golf players whose college is Arizona State Sun Devils?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:college <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri rdf:type onto:GolfPlayer}
lcquad
Did taylor swift do the theme song of The Farmer Wants a Wife?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/The_Farmer_Wants_a_Wife_(Australian_TV_series)> prop:opentheme <http://dbpedia.org/resource/Taylor_Swift> }
lcquad
How many local authorities manage mixed gender schools?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:gender <http://dbpedia.org/resource/Mixed-sex_education> . ?x onto:localAuthority ?uri . }
lcquad
What is the almamater of the successor of F. A. Little, Jr.?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/F._A._Little,_Jr.> onto:successor ?x . ?x onto:almaMater ?uri . }
lcquad
List everything in which saxophone players have been casted.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:instrument res:Saxophone . ?uri prop:starring ?x . }
lcquad
In which city is Corringham railway station located?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Corringham_railway_station prop:borough ?uri }
lcquad
What monument was unveiled in 1984 of fine arts of the Soviet Union ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1984_in_fine_arts_of_the_Soviet_Union prop:title ?uri }
lcquad
Where did the wrestler trained by Ring of Honour get billed?
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:trainer <http://dbpedia.org/resource/Ring_of_Honor> . ?x prop:billed ?uri . ?x rdf:type onto:Athlete}
lcquad
Name the console whose successor is PlayStation 4 and predecessor is PlayStation 2?
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:successor <http://dbpedia.org/resource/PlayStation_4> . ?uri prop:predecessor <http://dbpedia.org/resource/PlayStation_2> . ?uri rdf:ty...
lcquad
List the name of those who became famous for something garrisoned at Tennessee?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:garrison res:Tennessee . ?uri prop:knownFor ?x . }
lcquad
Which school teams are there in schools of Arlington Heights, Illinois?
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:city <http://dbpedia.org/resource/Arlington_Heights,_Illinois> . ?x prop:teamName ?uri . ?x rdf:type onto:School}
lcquad
Who is the person whose opponent's father is Newman Haynes Clanton?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Newman_Haynes_Clanton . ?uri onto:opponent ?x . }
lcquad
Who has official residences at Beverly Hills and Colts Neck Township ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:residence <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri onto:residence <http://dbpedia.org/resource/Colts_Neck_Township,_New_Jersey> . }
lcquad
What games are played in Protestant schools?
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:schooltype <http://dbpedia.org/resource/Protestantism> . ?x onto:sport ?uri . ?x rdf:type onto:School}
lcquad
Which river flows through both eastern and western washington?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Eastern_Washington onto:river ?uri. res:Central_Washington onto:river ?uri . }
lcquad
What company is the distributor of Bombay Sapphire?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Bombay_Sapphire prop:distributor ?uri }
lcquad
Did Trish Stratus train Christina Crawford?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Christina_Crawford_(wrestler)> prop:trainer <http://dbpedia.org/resource/Trish_Stratus> }
lcquad
Which stockholder of yale Repertory Theatre was training center of William Anthony ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> onto:training ?uri. <http://dbpedia.org/resource/Yale_Repertory_Theatre> prop:owner ?uri}
lcquad
Name the team for which Hensley Meulens played, whihc was also the debut team od Steve Ontiveros ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Ontiveros_(infielder)> prop:debutteam ?uri. <http://dbpedia.org/resource/Hensley_Meulens> onto:team ?uri}
lcquad
Name the common institution of the Erica Frank and Douglass North?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Erica_Frank onto:institution ?uri. res:Douglass_North onto:institution ?uri . }
lcquad
Name a office holder whose predecessor is Edward Douglass White and has son named Charles Phelps Taft II?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:predecessor <http://dbpedia.org/resource/Edward_Douglass_White> . ?uri onto:child <http://dbpedia.org/resource/Charles_Phelps_Taft_II> . ?uri rdf:type onto:OfficeHolder}
lcquad
List the ingredients of Kaszanka?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kaszanka onto:ingredient ?uri }
lcquad
List the language of Kunsten Museum of moder art Aalborg ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:KUNSTEN_Museum_of_Modern_Art_Aalborg onto:language ?uri }
lcquad
Is wizard rock inspired from Harry potter?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Wizard_rock onto:stylisticOrigin res:Harry_Potter }
lcquad
What is the venerated in of the Abraham and religion of the Saima Chowdhury
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Abraham prop:veneratedIn ?uri. res:Saima_Chowdhury prop:religion ?uri}
lcquad
Who directed the haunted house and alice in wonderland?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> onto:director ?uri. <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> onto:director ?uri . }
lcquad
Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:province res:Metropolitan_City_of_Venice . ?uri onto:leaderName res:Luigi_Brugnaro . }
lcquad
Who is the leader of Panki block ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Panki_block onto:leaderName ?uri }
lcquad
To which persons is Ron Cyrus a relative?
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:relatives <http://dbpedia.org/resource/Ron_Cyrus> . ?uri rdf:type onto:Person}
lcquad
How many services are there of the companies whose services is Web hosting service ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services <http://dbpedia.org/resource/Web_hosting_service> . ?x prop:services ?uri }
lcquad
Is Neungin High school a buddhist school?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Neungin_High_School prop:religiousAffiliation res:Buddhism }
lcquad
Name the mascot of the military branch of William Harper.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Harper_(Rhodesian_politician)> onto:militaryBranch ?x . ?x prop:mascot ?uri . }
lcquad
What musician is often associated with Tiffany Villarreal and wrote Same Song?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Same_Song_(Digital_Underground_song)> prop:writer ?uri. <http://dbpedia.org/resource/Tiffany_Villarreal> onto:associatedMusicalArtist ?uri . }
lcquad
Which location country of Ennejma Ezzahra is also the origin of Boga ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boga_(soft_drink)> prop:origin ?uri. <http://dbpedia.org/resource/Ennejma_Ezzahra> prop:locationCountry ?uri}
lcquad
What is the state whose largest city is Denver?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:largestCity res:Denver . }
lcquad
Who have been the manager of national team of Spain?
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:nationalteam <http://dbpedia.org/resource/Spain_national_football_team> . ?uri rdf:type onto:SoccerManager}
lcquad
For which common president did Jim Sasser and Mike McCurry work?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Sasser> onto:president ?uri. <http://dbpedia.org/resource/Mike_McCurry_(press_secretary)> onto:president ?uri . }
lcquad
What is the municipality of the Homestead Grays Bridge and Roberto Clemente Bridge?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Homestead_Grays_Bridge onto:municipality ?uri. res:Roberto_Clemente_Bridge onto:municipality ?uri . }
lcquad
Who is a successor of Kingship whose parents were Julius Caesar?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parent <http://dbpedia.org/resource/Julius_Caesar> . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}
lcquad
How many organizations work for Environmentalism?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:purpose <http://dbpedia.org/resource/Environmentalism> . }
lcquad
Was Zambezi originate in the north western province of zambia?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Zambezi> prop:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zambia> }
lcquad
Which US state has Dorchester Bay and the Joseph Story?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joseph_Story> prop:state ?uri. <http://dbpedia.org/resource/Dorchester_Bay_(Boston_Harbor)> prop:state ?uri . }
lcquad
Who is the predecessor of Voere ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Voere onto:predecessor ?uri }
lcquad
Which city is Black Grape Global located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Black_Grape_Global onto:locationCity ?uri }
lcquad
Which movies did Mark Steven edit?
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:editing <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri rdf:type onto:Film}
lcquad
Who is the common distributer of Bombay Sapphire and Rev ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bombay_Sapphire> prop:distributor ?uri. <http://dbpedia.org/resource/Rev_(drink)> onto:distributor ?uri}
lcquad
Which sports are played in the school which runs the Fr. Agnel Stadium?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Stadium prop:operator ?x . ?x onto:sport ?uri . }
lcquad
Name the common musical band of Take Me There and Tonight's the Night ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Take_Me_There_(Blackstreet_&_Mýa_song)> onto:musicalBand ?uri. <http://dbpedia.org/resource/Tonight's_the_Night_(Blackstreet_song)> onto:musicalBand ?uri . }
lcquad
Which ethnicity do Linda Hogan and Riley Reid come from?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri. res:Riley_Reid prop:ethnicity ?uri . }
lcquad
Who is the parent of FD Roosevelt JR?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:children <http://dbpedia.org/resource/Franklin_Delano_Roosevelt,_Jr.> . }
lcquad
NAme the emplyer for whihc Manu cornet has worked and also written in Google Web Toolkit ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google_Web_Toolkit onto:author ?uri}
lcquad
is ANYway in the Quack album?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/ANYway> onto:album <http://dbpedia.org/resource/Quack_(album)> }
lcquad
How many more teams have rented the stadium used by Raptors 905?
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 { <http://dbpedia.org/resource/Raptors_905> prop:arena ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}
lcquad
List the common prime minister of the Robert Ray and graham richardson ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Ray_(Australian_politician)> onto:primeMinister ?uri. <http://dbpedia.org/resource/Graham_Richardson> onto:primeMinister ?uri . }
lcquad
Count the wars in which people awarded with the Croix de guerre fought.
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:awards <http://dbpedia.org/resource/Croix_de_guerre_1939–1945_(France)> . ?x prop:battles ?uri . ?uri rdf:type onto:MilitaryConfl...
lcquad
Which first driver of European Grand Prix 1993 is also finished first in 1985 Portuguese Grand Prix ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri. res:1985_Portuguese_Grand_Prix prop:firstDriver ?uri . }
lcquad
Name the river whose source is located in Itasca State Park and mouth is located in Pilottown, Louisiana?
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:sourceLocation <http://dbpedia.org/resource/Itasca_State_Park> . ?uri prop:mouthLocation <http://dbpedia.org/resource/Pilottown,_Louisia...
lcquad
How many have been awarded by the Royal Society?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:awards <http://dbpedia.org/resource/Royal_Society> . }
lcquad
From how many different cities have people gone to the Illinois Fighting Illini men's basketball?
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:college <http://dbpedia.org/resource/Illinois_Fighting_Illini_men's_basketball> . ?x prop:placeOfBirth ?uri . ?uri rdf:type onto:...
lcquad
who manufactures the SHO V8?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ford_SHO_V8_engine onto:manufacturer ?uri }
lcquad
What is the television show whose opening theme's album is Cheers?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:album <http://dbpedia.org/resource/Cheers> . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
What sports are played in schools in Vashi?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:city <http://dbpedia.org/resource/Vashi> . ?x onto:sport ?uri . ?x rdf:type onto:School}
lcquad
Name the television show developed by J. Michael Straczynski and distributed by Warner Bros. Television?
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:developer <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri prop:distributor <http://dbpedia.org/resource/Warner_Bros._Televis...
lcquad
Where are the agencies headquartered at, which are under the Colorado Dept of Natural Resources?
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:parentOrganisation <http://dbpedia.org/resource/Colorado_Department_of_Natural_Resources> . ?x prop:headquarters ?uri . ?x rdf:type onto...
lcquad
What is the genre for the developer of Interplay Entertainment?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:developer res:Interplay_Entertainment . ?x onto:genre ?uri . }
lcquad
Give me some nominees of politicians in the US?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:residence <http://dbpedia.org/resource/United_States> . ?x onto:nominee ?uri . ?x rdf:type onto:OfficeHolder}
lcquad
What is the TV Show whose theme is composed by someone signed up with Prawn Song Records?
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:recordLabel <http://dbpedia.org/resource/Prawn_Song_Records> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Name the team of Michael springer ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri }
lcquad
In which television shows have Steven Moffat served as an executive producer?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer <http://dbpedia.org/resource/Steven_Moffat> . ?uri rdf:type onto:TelevisionShow}
lcquad
Was Robert Burns from the Romanticist School of thought?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Robert_Burns prop:movement res:Romanticism }
lcquad
Paris Sisters singles are of which language?
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:musicalBand <http://dbpedia.org/resource/The_Paris_Sisters> . ?x prop:language ?uri . ?x rdf:type onto:Single}
lcquad
Who were the first drivers in the grand prix which took place at Autodromo Enzo e Dino Ferrari?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:location res:Autodromo_Enzo_e_Dino_Ferrari . ?x onto:firstDriver ?uri . }
lcquad
What belongs to the families of Buccinidae and Buccinoidea?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:family res:Buccinidae . ?uri onto:family res:Buccinoidea . }
lcquad
What are the broadcast areas of Mauritius Broadcasting Corporation?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Mauritius_Broadcasting_Corporation prop:broadcastArea ?uri }
lcquad
Where was Henri, Duke of Rohan laid to rest?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri,_Duke_of_Rohan> onto:placeOfBurial ?uri }
lcquad
What are the movies whose cinematographer is Gregg Toland?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:cinematography <http://dbpedia.org/resource/Gregg_Toland> . ?uri rdf:type onto:Film}
lcquad
In how many different highschools have people schooled in Penn State Nittany Lions football studied?
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:school <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x prop:highschool ?uri . ?uri rdf:type onto:Educational...
lcquad
Name the founders of the record labels whose one of the founders is Frank Rogers ?
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:founder <http://dbpedia.org/resource/Frank_Rogers_(record_producer)> . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}
lcquad
How many different people hold authority over the members of Balanidae family?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family <http://dbpedia.org/resource/Balanidae> . ?x onto:binomialAuthority ?uri . }
lcquad
Which offices were held by the politicians who held their allegiance to the union of american civil war?
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:allegiance <http://dbpedia.org/resource/Union_(American_Civil_War)> . ?x prop:office ?uri . ?x rdf:type onto:OfficeHolder}
lcquad
Who is the american football player whose highschool is Ringgold High School (Pennsylvania)?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:highschool <http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)> }
lcquad
Count the total number of conflicts people who were part of conflict in afghanisthan ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle <http://dbpedia.org/resource/Afghanistan> . ?x onto:battle ?uri }
lcquad
Kendall Jenner has how many relatives?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Kendall_Jenner> prop:relatives ?uri . }
lcquad
Where is Tahual located which is also the country of Ren Romano ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:René_Romano prop:citizenship ?uri. res:Tahual prop:location ?uri}
lcquad
What is the current team of John McGuinness (motorcycle racer) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_McGuinness_(motorcycle_racer)> prop:currentTeam ?uri }
lcquad
Where do the CNN employees typically graduate from?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:employer res:CNN . ?x onto:almaMater ?uri . }
lcquad
Name the common serving line of Daund Junction railway station and Ujjain Junction railway station?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Daund_Junction_railway_station onto:servingRailwayLine ?uri. res:Ujjain_Junction_railway_station onto:servingRailwayLine ?uri . }
lcquad
What other destinations do airlines go to, whose flights also come to Glasgow?
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:targetAirport <http://dbpedia.org/resource/Glasgow_Airport> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}
lcquad
What is the location town of First Church of Christ, Scientist (Pittsburgh) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> prop:locationTown ?uri }
lcquad
Does the platte river originate in Colorado?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Platte_River onto:sourceRegion res:Colorado }
lcquad
Bridges over what can carry vehicles?
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:carries <http://dbpedia.org/resource/Motor_vehicle> . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}
lcquad
Where is the spouse of Henry Bourchier of Essex buried?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:spouse <http://dbpedia.org/resource/Henry_Bourchier,_1st_Earl_of_Essex> . ?x prop:placeOfBurial ?uri . }
lcquad
Which ship builder built the USS Camp and Sturtevant ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/USS_Camp_(DE-251)> prop:shipBuilder ?uri. <http://dbpedia.org/resource/USS_Sturtevant_(DE-239)> prop:shipBuilder ?uri . }
lcquad
What shows are on the networks which are from the United States?
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:locationCountry <http://dbpedia.org/resource/United_States> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Name the scientist whose doctoral supervisor's doctoral student is John Bowlby?
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:doctoralStudent <http://dbpedia.org/resource/John_Bowlby> . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}
lcquad
Which author inspired Susanna Clarke, and wrote Northanger Abbey?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Northanger_Abbey prop:author ?uri. res:Susanna_Clarke prop:influences ?uri . }
lcquad
Name the office holder whose Governor is Charles Willing Byrd and has resting place as North Bend, Ohio?
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:governor <http://dbpedia.org/resource/Charles_Willing_Byrd> . ?uri prop:restingplace <http://dbpedia.org/resource/North_Bend,_Ohio> . ?...
lcquad
Over what do Concor holdings have a bridge?
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:builder <http://dbpedia.org/resource/Concor_Holdings> . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}
lcquad
Which sports are played at both the Polytech uni of Bataan and Taguig?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri . }
lcquad
Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ?
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:distributor <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri prop:editing <http://dbpedia.org/resource/Julian_Doyle...
lcquad