question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What is the total number of politicians whose predecessor's deputy is Jenny Macklin?
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:deputy <http://dbpedia.org/resource/Jenny_Macklin> . ?uri prop:predecessor ?x . ?uri rdf:type onto:OfficeHolder}
lcquad
How many managers have managed Middlesbrough FC?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:managerClub <http://dbpedia.org/resource/Middlesbrough_F.C.> . }
lcquad
Among which basket ball team having arena as The Palace of Auburn hills has president as Stan Van Gundy ?
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:arena <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri prop:president <http://dbpedia.org/resource/Stan_Van_Gundy> . ?ur...
lcquad
Give me a count of bridges located in California ?
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:locatedInArea <http://dbpedia.org/resource/California> . ?uri rdf:type onto:Bridge}
lcquad
What are the sports played by the universities who also plays taekwondo ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:athletics res:Taekwondo . ?x prop:athletics ?uri . }
lcquad
Who all are buried in Arlington national cementary?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:placeofburial res:Arlington_National_Cemetery }
lcquad
Name the office holder whose spouse is Dolley Madison and belongs to Militia branch ?
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:spouse <http://dbpedia.org/resource/Dolley_Madison> . ?uri prop:branch <http://dbpedia.org/resource/Militia> . ?uri rdf:type onto:Offic...
lcquad
To which country do the players of Waitakere United belong?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:team <http://dbpedia.org/resource/Waitakere_United> . ?x onto:country ?uri . ?x rdf:type onto:Athlete}
lcquad
How many different genres led to other genres where drums are important?
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:instruments <http://dbpedia.org/resource/Drum_kit> . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre}
lcquad
Is Trevor Peacock the narrator of Fred Claus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Fred_Claus prop:narrator res:Trevor_Peacock }
lcquad
Which river's mouth location is Laptev Sea and also Arctic Ocean?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:mouthLocation res:Laptev_Sea . ?uri prop:mouthLocation res:Arctic_Ocean . }
lcquad
List all the bands which have members of the band Guy in them?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Guy_(band)> onto:bandMember ?x . ?x onto:associatedBand ?uri . }
lcquad
List the opponents of the relatives of Thomas Helwys?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:relation <http://dbpedia.org/resource/Thomas_Helwys> . ?x onto:opponent ?uri . ?x rdf:type onto:Person}
lcquad
Gamini Seneviratne and Katyayana are two followers of which religion?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gamini_Seneviratne> prop:religion ?uri. <http://dbpedia.org/resource/Katyayana_(Buddhist)> prop:religion ?uri . }
lcquad
Who are the predecessors of John Randolph of Roanoke?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:predecessor res:John_Randolph_of_Roanoke . }
lcquad
Was A Jitney Elopement edited by Charlie Chaplin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:A_Jitney_Elopement onto:editing res:Charlie_Chaplin }
lcquad
What team did J P Paris was former team of Bert McCaffrey play for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:J._P._Parisé prop:playedFor ?uri. res:Bert_McCaffrey onto:formerTeam ?uri . }
lcquad
What is the river that falls into North Sea and Thames Estuary?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:riverMouth <http://dbpedia.org/resource/North_Sea> . ?uri onto:riverMouth <http://dbpedia.org/resource/Thames_Estuary> . ?uri rdf:type onto:River}
lcquad
How many companies were founded in Dallas?
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:foundation <http://dbpedia.org/resource/Dallas> . ?uri rdf:type onto:Company}
lcquad
Name the ones who debuted in the San Francisco 49ers.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:debutTeam res:San_Francisco_49ers . }
lcquad
Which county seat of the King County, Washington and PLACE OF DEATH of the Phil Lumpkin ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> onto:countySeat ?uri. <http://dbpedia.org/resource/Phil_Lumpkin> prop:placeOfDeath ?uri}
lcquad
Who all have appointed governess born in Magnolia Plantation gardens?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Magnolia_Plantation_and_Gardens_(Charleston,_South_Carolina)> . ?x prop:appointer ?uri . }
lcquad
Humes High School is alma mater to which person?
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:education <http://dbpedia.org/resource/Humes_High_School> . ?uri rdf:type onto:Person}
lcquad
Which range of mountains are there in canton of Fribourg?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea res:Canton_of_Fribourg . ?x onto:mountainRange ?uri . }
lcquad
Which species' members are there in the animal kingdom?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:kingdom res:Animal . ?x onto:species ?uri . }
lcquad
Was Henry Knox a major general?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Henry_Knox> onto:militaryRank <http://dbpedia.org/resource/Major_general_(United_States)> }
lcquad
What company made the front row and distributed big top ballet?
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/Big_Top_Ballet> prop:distributor ?uri. <http://dbpedia.org/resource/Front_Row_(software)> prop:developer ?uri . ?uri...
lcquad
What is the nation of the Major All Stars Season 1 and Pioneer Corporation ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Major_All_Stars_Season_1 prop:country ?uri. res:Pioneer_Corporation prop:country ?uri . }
lcquad
Which HBO's television series was produced by Erik Bork?
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/HBO> . ?uri onto:producer <http://dbpedia.org/resource/Erik_Bork> . ?uri rdf:type onto:Televis...
lcquad
List all the record label distributed by the distributor of Zune ?
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:distributor <http://dbpedia.org/resource/Zune> . ?x prop:distributor ?uri . ?x rdf:type onto:RecordLabel}
lcquad
What made Jon Speelman and Eric Schiller famous?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Eric_Schiller onto:knownFor ?uri}
lcquad
Which stadium is owned by the team whose manager is Dimitris Terezopoulos?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:manager res:Dimitris_Terezopoulos . ?x prop:stadium ?uri . }
lcquad
Name the television show which was developed by Brian Graden and distributed by Comedy Central?
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:developer <http://dbpedia.org/resource/Brian_Graden> . ?uri prop:distributor <http://dbpedia.org/resource/Comedy_Central> . ?uri rdf:ty...
lcquad
From how many countries did the aeroplanes designed by Alexander Lippisch originate?
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/Alexander_Lippisch> . ?x prop:nationalOrigin ?uri . ?uri rdf:type onto:Country}
lcquad
Fairfield, Connecticut is hometown to which persons?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:hometown <http://dbpedia.org/resource/Fairfield,_Connecticut> . ?uri rdf:type onto:Person}
lcquad
Do the White Plains Road lie in the Bronx county?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:White_Plains_Road prop:counties res:The_Bronx }
lcquad
Which fictional character portrayed by Roger barton has Padm Amidala as family ?
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:portrayer <http://dbpedia.org/resource/Roger_Barton_(film_editor)> . ?uri prop:family <http://dbpedia.org/resource/Padmé_Amidala> . ?ur...
lcquad
Name presidents of the schools which have queen noor of Jordan as one of them ?
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:president <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x prop:president ?uri . ?x rdf:type onto:School}
lcquad
How many bands are signed up with Kobalt Label Services?
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:recordLabel <http://dbpedia.org/resource/Kobalt_Label_Services> . ?uri rdf:type onto:Band}
lcquad
Was 12th Field Artillery Regiment garrisoned at colorado?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:12th_Field_Artillery_Regiment onto:garrison res:Colorado }
lcquad
Name the office holder who has a child named Lori Black and resting place is Alta Mesa Memorial Park?
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:child <http://dbpedia.org/resource/Lori_Black> . ?uri prop:restingPlace <http://dbpedia.org/resource/Alta_Mesa_Memorial_Park> . ?uri rd...
lcquad
What is the area of Tar Heel Sports Network ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tar_Heel_Sports_Network prop:area ?uri }
lcquad
Which office holder's military branch is Continental Army and vice president is John Adams?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch <http://dbpedia.org/resource/Continental_Army> . ?uri onto:vicePresident <http://dbpedia.org/resource/John_Adams> . ?uri rdf:type onto:OfficeHolder}
lcquad
What are the television shows which are in NTSC and 5.1 surround sound?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:format <http://dbpedia.org/resource/NTSC> . ?uri onto:format <http://dbpedia.org/resource/5.1_surround_sound> . ?uri rdf:type onto:TelevisionShow}
lcquad
What nation is the motherland of Ricardo Alfonso Cerna where Apostolic Vicariate of El Petn is located?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ricardo_Alfonso_Cerna prop:birthPlace ?uri. res:Apostolic_Vicariate_of_El_Petén onto:country ?uri . }
lcquad
What are some games availible on nintendo's virtual console?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri rdf:type onto:VideoGame}
lcquad
Name the television program voiced by Isaac Hayes and aired on Comedy Central?
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:voices <http://dbpedia.org/resource/Isaac_Hayes> . ?uri prop:network <http://dbpedia.org/resource/Comedy_Central> . ?uri rdf:type onto:...
lcquad
Chestnut colored horses have won which races?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:colour <http://dbpedia.org/resource/Chestnut_(coat)> . ?x onto:honours ?uri . ?x rdf:type onto:Horse}
lcquad
Where did the film director of Kala Pani die?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> onto:director ?x . ?x onto:deathPlace ?uri . }
lcquad
What show had NTSC format and theme music composed by Ron Grainer?
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:format <http://dbpedia.org/resource/NTSC> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer> . ?uri rdf:type onto...
lcquad
Who has fought in the conflicts around the Mississippi river?
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:place <http://dbpedia.org/resource/Mississippi_River> . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}
lcquad
Which leader of united states house representatives election was married to Dolley Madison ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_House_of_Representatives_elections,_1788_and_1789> prop:leader ?uri. <http://dbpedia.org/resource/Dolley_Madison> onto:spouse ?uri}
lcquad
To which county of New York city does the Tremount Avenue street belong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tremont_Avenue prop:counties ?uri }
lcquad
What are the death place of the models whose hair color was Red?
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:hairColor <http://dbpedia.org/resource/Red_hair> . ?x prop:deathPlace ?uri . ?x rdf:type onto:Model}
lcquad
To which region does the Miluk language belong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Miluk_language prop:region ?uri }
lcquad
What is the Ceremonial County of Port of Tilbury ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Port_of_Tilbury onto:ceremonialCounty ?uri }
lcquad
What is the war in which both K Fordice and P Fitzwallace fight?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Kirk_Fordice prop:battles ?uri. res:Percy_Fitzwallace prop:battles ?uri . }
lcquad
Name the part of Liverpool city region >
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liverpool_City_Region onto:part ?uri }
lcquad
What is the television show whose sculptor is C. E. Webber and composed by Murray Gold?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:creator <http://dbpedia.org/resource/C._E._Webber> . ?uri onto:composer <http://dbpedia.org/resource/Murray_Gold> . ?uri rdf:type onto:TelevisionShow}
lcquad
Who created the world series of Poker?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:World_Series_of_Poker prop:founded ?uri }
lcquad
What are the source of the streams whose one of the source is Calera, Oklahoma?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:source <http://dbpedia.org/resource/Calera,_Oklahoma> . ?x onto:source ?uri . ?x rdf:type onto:Stream}
lcquad
What is the game platform of Google Cloud Connect ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Google_Cloud_Connect onto:computingPlatform ?uri }
lcquad
Which fictional character's relatives were made by Ted Osborne?
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:creator <http://dbpedia.org/resource/Ted_Osborne> . ?uri prop:relatives ?x . ?uri rdf:type onto:FictionalCharacter}
lcquad
Who are the stars of the movies which are distributed by Artisan Entertainment ?
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:distributor <http://dbpedia.org/resource/Artisan_Entertainment> . ?x onto:starring ?uri . ?x rdf:type onto:Film}
lcquad
Count the different religions followed by Second Lieutenants in military.
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank <http://dbpedia.org/resource/Second_lieutenant> . ?x onto:religion ?uri . }
lcquad
List softwares written in C++ and runs on Mac OS ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem <http://dbpedia.org/resource/Mac_OS> . ?uri onto:programmingLanguage <http://dbpedia.org/resource/C++> . ?uri rdf:type onto:Software}
lcquad
Name the river mouth of Moordener Kill ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Moordener_Kill onto:riverMouth ?uri }
lcquad
Which partner of the Tim Mathieson is also the primeminister of the Mike Kelly (Australian politician) ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tim_Mathieson> onto:partner ?uri. <http://dbpedia.org/resource/Mike_Kelly_(Australian_politician)> prop:primeminister ?uri}
lcquad
List the producer of the TV shows whose company is HBO.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:company <http://dbpedia.org/resource/HBO> . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}
lcquad
What is the television show whose company is Playtone and written by Erik Jendresen?
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:company <http://dbpedia.org/resource/Playtone> . ?uri prop:writer <http://dbpedia.org/resource/Erik_Jendresen> . ?uri rdf:type onto:Tel...
lcquad
Which ancient country had capital as Nicomedia and History of Trier?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:capital <http://dbpedia.org/resource/Nicomedia> . ?uri onto:capital <http://dbpedia.org/resource/History_of_Trier> . ?uri rdf:type onto:Country}
lcquad
In which races did the horses of Mon Capitaine take part?
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:sire <http://dbpedia.org/resource/Mon_Capitaine> . ?x prop:race ?uri . ?x rdf:type onto:Horse}
lcquad
Which TV show's writer is Erik Jendresen and distributor is HBO?
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:writer <http://dbpedia.org/resource/Erik_Jendresen> . ?uri prop:distributor <http://dbpedia.org/resource/HBO> . ?uri rdf:type onto:Tele...
lcquad
What railway lines go through the stations maintained by Western Australian Public Transport Authority?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x onto:servingRailwayLine ?uri . ?x rdf:type onto:Station}
lcquad
How many publisher have been founded by american citizens?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:stateOfOrigin <http://dbpedia.org/resource/United_States> . ?uri onto:founder ?x . ?uri rdf:type onto:Publisher}
lcquad
How many other region served are there of the companies which serves Pacific Ocean ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed <http://dbpedia.org/resource/Pacific_Ocean> . ?x onto:regionServed ?uri }
lcquad
Name the sitcoms whose network's owning company is Chris-Craft Industries?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany <http://dbpedia.org/resource/Chris-Craft_Industries> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
How many countries surround the sea into which the Upper Neratva flow?
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/Upper_Neretva> onto:riverMouth ?x . ?x onto:country ?uri . ?x rdf:type onto:Sea}
lcquad
How many rivers end in the Indian Ocean?
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:riverMouth <http://dbpedia.org/resource/Indian_Ocean> . ?uri rdf:type onto:River}
lcquad
Name the home town of Rolando Gomez ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri }
lcquad
Who is owner of the soccer club which owns the Cobham Training Centre?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Cobham_Training_Centre prop:owner ?x . ?x prop:owner ?uri . }
lcquad
What is the common genere of Abhijit Kunte and Kasparov ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Abhijit_Kunte prop:knownFor ?uri. res:Virtual_Kasparov onto:genre ?uri}
lcquad
List some things that Swedish people have become famous for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin res:Sweden . ?x onto:knownFor ?uri . }
lcquad
Is Esther Alder the mayor of Geneva?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Geneva prop:mayor res:Esther_Alder }
lcquad
Which shows have voices from people signed up with ABC 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 prop:label <http://dbpedia.org/resource/ABC_Records> . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Is National Archaeological Museum (Florence) the museum of Chimera of Arezzo?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Chimera_of_Arezzo> prop:museum <http://dbpedia.org/resource/National_Archaeological_Museum_(Florence)> }
lcquad
Cleopatra V of Egypt is father to which royalty?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:mother res:Cleopatra_V_of_Egypt }
lcquad
Which sucessor of George Madison is the sucessor of levi Lincoln, Sr. ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/George_Madison> onto:relation ?uri. <http://dbpedia.org/resource/Levi_Lincoln,_Sr.> prop:successor ?uri}
lcquad
Give me some TV stations whose network's main language is American English?
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:language <http://dbpedia.org/resource/American_English> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionStation}
lcquad
Who is the President of the United World College of Costa Rica and United World Colleges ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica prop:president ?uri. res:United_World_Colleges prop:president ?uri . }
lcquad
How many artists' works are in Muse 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 COUNT(?uri) WHERE { ?x prop:museum <http://dbpedia.org/resource/Musée_d'Orsay> . ?x prop:artist ?uri . ?uri rdf:type onto:Artist}
lcquad
Whose wife is a presenter at WWE?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:presenter res:WWE . ?uri onto:spouse ?x . }
lcquad
What are some cars which came before the ones on a GM B base?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform <http://dbpedia.org/resource/GM_B_platform> . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}
lcquad
Give me a count of everything owned by the network whose sister name is The CW?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames <http://dbpedia.org/resource/The_CW> . ?uri prop:network ?x . }
lcquad
Whichd officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:restingplace <http://dbpedia.org/resource/North_Bend,_Ohio> . ?uri prop:branch <http://dbpedia.org/resource/Indiana_Territory> . }
lcquad
What sporting goods companies are located in Herzogenaurach?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:location res:Herzogenaurach }
lcquad
Name the commander of Battle of the Thames ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Battle_of_the_Thames onto:commander ?uri }
lcquad
Name the sports played by Fr. Agnel Multipurpose School and Junior College?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri }
lcquad
What program is presented by Brian Dunkleman and has artist as Simon Fuller?
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:presenter <http://dbpedia.org/resource/Brian_Dunkleman> . ?uri prop:creator <http://dbpedia.org/resource/Simon_Fuller> . ?uri rdf:type ...
lcquad
What are some districts in the Tendring borough?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:borough res:Tendring . ?x onto:district ?uri . }
lcquad