question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What is the base currency of the Benelux which can be used in Republic of Montenegro?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Benelux> prop:currency ?uri. <http://dbpedia.org/resource/Republic_of_Montenegro_(1992–2006)> prop:currency ?uri . }
lcquad
What is the alma mater of Julian Leow Beng Kim?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Julian_Leow_Beng_Kim prop:almaMater ?uri }
lcquad
Is Eddie Bravo the trainer of Alan Jouban
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Alan_Jouban onto:trainer res:Eddie_Bravo }
lcquad
How many awards have been given to the participants of the Lawrence Realization Stakes?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x onto:honours ?uri . }
lcquad
What religion is followed by the commander of Defense Security Command?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Defense_Security_Command onto:notableCommander ?x . ?x onto:religion ?uri . }
lcquad
Who won the general elections in India in 2009, and had also won the AP elections in 2004 ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Indian_general_election,_2004_(Andhra_Pradesh)> onto:affiliation ?uri. <http://dbpedia.org/resource/Indian_general_election,_2009> onto:affiliation ?uri . }
lcquad
List the work edited by Mark Stevens and directed by Joel Schumacher?
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 onto:director <http://dbpedia.org/resource/Joel_Schumacher> . ?...
lcquad
Name some local authorities of schools which have a mixed gender education system?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:gender <http://dbpedia.org/resource/Mixed-sex_education> . ?x onto:localAuthority ?uri . ?x rdf:type onto:School}
lcquad
Which president of William Eustus also married to Dolley Madison ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Dolley_Madison onto:spouse ?uri. res:William_Eustis prop:president ?uri}
lcquad
Count the different types of Flatbread ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:type <http://dbpedia.org/resource/Flatbread> . }
lcquad
Count the birthplaces of recepients of the National Museum of Racing and Hall of Fame.
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:honours <http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame> . ?x onto:birthPlace ?uri . ?uri rdf:type onto:Place}
lcquad
Name the serving line of Daund 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 }
lcquad
What is the county seat of the district through which the Beckler River flows?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Beckler_River> onto:district ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:AdministrativeRegion}
lcquad
What is the television show whose judges is Randy Jackson?
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:judges <http://dbpedia.org/resource/Randy_Jackson> . ?uri rdf:type onto:TelevisionShow}
lcquad
How many companies serve the Australian region?
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:regionServed <http://dbpedia.org/resource/Australia> . ?uri rdf:type onto:Company}
lcquad
How many teams was Garry Unger in, previously?
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/Garry_Unger> onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}
lcquad
What is the name of the television show whose company is Paramount Television and theme music composer is Gary Portnoy?
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:company <http://dbpedia.org/resource/Paramount_Television> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Gary_Portnoy> . ...
lcquad
How many writers worked on the album Main Course?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:album <http://dbpedia.org/resource/Main_Course> . ?x prop:writer ?uri . }
lcquad
List the popular works of the author of Luther: The Calling ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Luther:_The_Calling prop:author ?x . ?x onto:notableWork ?uri . }
lcquad
Which were the philosophers whose primary interest was Natural philosophy?
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:mainInterests <http://dbpedia.org/resource/Natural_philosophy> . ?uri rdf:type onto:Philosopher}
lcquad
Was the FIS Alpine World Ski Championship of 1950 held in Colorado?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:FIS_Alpine_World_Ski_Championships_1950 prop:hostCity res:Colorado }
lcquad
Which wine region of Bogdanua is the Croatian Inline hockey team part of ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri. res:Croatian_Inline_Hockey_League onto:country ?uri}
lcquad
What is the place of death of the royalties one of whose parents was Adam Ludwik Czartoryski?
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:parent <http://dbpedia.org/resource/Adam_Ludwik_Czartoryski> . ?x prop:deathPlace ?uri . ?x rdf:type onto:Royalty}
lcquad
In which country is the Chapelle Saint-Louis de Carthage located ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chapelle_Saint-Louis_de_Carthage> onto:location ?x . ?x onto:country ?uri . }
lcquad
where did the office holder died who is successor to Elmer Burkett ?
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:successor <http://dbpedia.org/resource/Elmer_Burkett> . ?x prop:deathPlace ?uri . ?x rdf:type onto:OfficeHolder}
lcquad
What things canonized John of Damascus and and also venerated the Edwin of Northumbria ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_of_Damascus onto:canonizedBy ?uri. res:Edwin_of_Northumbria prop:veneratedIn ?uri}
lcquad
What is the common award won by geoffrey Rush and Laemmle Theatres ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Geoffrey_Rush prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri}
lcquad
What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingplace <http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery> . ?x prop:restingplace ?uri }
lcquad
Who were the pole drivers in GP when Damon hill was a first driver?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:firstDriver <http://dbpedia.org/resource/Damon_Hill> . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}
lcquad
How many albums were released under the Victor Entertainment label?
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:label <http://dbpedia.org/resource/Victor_Entertainment> . ?uri rdf:type onto:Album}
lcquad
To which company is Michael Dell a father company?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:owningCompany <http://dbpedia.org/resource/Michael_Dell> . ?uri rdf:type onto:Company}
lcquad
What is the source location of Thornton Creek ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Thornton_Creek prop:sourceLocation ?uri }
lcquad
To which company does Raymond Conner is critical to?
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/Raymond_Conner> . ?uri rdf:type onto:Company}
lcquad
From where does the river start, which flows into the Conowingo dam?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth <http://dbpedia.org/resource/Conowingo_Dam> . ?x onto:source ?uri . ?x rdf:type onto:River}
lcquad
Who appointed the successor of Charles Pinckney ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Pinckney_(governor)> onto:successor ?x . ?x prop:appointer ?uri . }
lcquad
What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner ?
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/The_Trumpet_Kings_Meet_Joe_Turner> prop:producer ?x . ?x onto:associatedBand ?uri . ?x rdf:type onto:MusicalArtist}
lcquad
Name the home town of Cline Buckens ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri }
lcquad
List the music played in television episode which came after The Colonel (The Americans) ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Colonel_(The_Americans)> onto:subsequentWork ?x . ?x prop:music ?uri . }
lcquad
Which university provides license for WRVU ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:WRVU prop:licensee ?uri }
lcquad
Name the basketball player who played for Phoenix Suns and Los Angeles Clippers was his draft team?
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:team <http://dbpedia.org/resource/Phoenix_Suns> . ?uri prop:draftTeam <http://dbpedia.org/resource/Los_Angeles_Clippers> . ?uri rdf:typ...
lcquad
Who are the spouse of the parents of Kimberly Stewart?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kimberly_Stewart onto:parent ?x . ?x onto:spouse ?uri . }
lcquad
What have some famous Christians died of?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:religion res:Christianity . ?x onto:deathCause ?uri . }
lcquad
Who is the mayor of the city under which is the constituency of Zora Singh Maan?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Zora_Singh_Maan prop:constituency ?x . ?x onto:leaderName ?uri . }
lcquad
What are Breann McGregor and Anika Knudsen, both known for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Breann_McGregor prop:knownFor ?uri. res:Anika_Knudsen prop:knownFor ?uri . }
lcquad
Name a scientist whose official residence is Cape Town and also won a gold medal at the Royal Astronomical Society ?
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:prizes <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . ?uri prop:residence <http://dbpedia.org/resource/Cap...
lcquad
In how many places can I find tombs of people who fought in the Norwalk Trainband?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryUnit <http://dbpedia.org/resource/Norwalk_Trainband> . ?x prop:restingplace ?uri . }
lcquad
Does GeneWeb have the GPL license?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:GeneWeb prop:license res:GNU_General_Public_License }
lcquad
What is the location of Dad's Root Beer on Google maps?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dad's_Root_Beer> prop:locationCity ?uri }
lcquad
Is Darcs released with a GNU license?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Darcs onto:license res:GNU }
lcquad
What is the district of Fort Heath radar station ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Heath_radar_station prop:district ?uri }
lcquad
How many saints have been venerated in Judaism?
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:veneratedIn <http://dbpedia.org/resource/Judaism> . ?uri rdf:type onto:Saint}
lcquad
List down all the bands to which the writers of 03 Bonnie & Clyde are associated?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/'03_Bonnie_&_Clyde> onto:writer ?x . ?x onto:associatedBand ?uri . }
lcquad
How many people are famous for the Gibson Les Paul?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:notableInstruments <http://dbpedia.org/resource/Gibson_Les_Paul> . }
lcquad
What municipalities are adjacent to Chne-Bougeries?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities <http://dbpedia.org/resource/Chêne-Bougeries> . }
lcquad
Who is the founder of Oprah Winfrey Network (U.S. TV channel) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oprah_Winfrey_Network_(U.S._TV_channel)> prop:founder ?uri }
lcquad
What is the alma mater of the Angela Trusty and Charles Ayres?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Angela_Trusty onto:almaMater ?uri. res:Charles_Ayres onto:almaMater ?uri . }
lcquad
List all the wine regions of the grapes whose one of the wine region is Mississippi ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion <http://dbpedia.org/resource/Mississippi> . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}
lcquad
Which river originates from Cape Vincent and Kingston, Ontario?
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/Cape_Vincent,_New_York> . ?uri prop:sourceLocation <http://dbpedia.org/resource/Kingston,_O...
lcquad
Name the office holder whose theatre is Siege of Fort Recovery and belongs to Indian territory 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 onto:battle <http://dbpedia.org/resource/Siege_of_Fort_Recovery> . ?uri prop:branch <http://dbpedia.org/resource/Indiana_Territory> . ?uri r...
lcquad
For which clubs do the players of Azam F.C. play for?
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/Azam_F.C.> prop:name ?x . ?x onto:team ?uri . ?x rdf:type onto:SoccerPlayer}
lcquad
What are the mammals whose phylum is Chordate?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal}
lcquad
Where did Doug Walgren and Lee Si Chen study?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lee_Si-Chen> prop:almaMater ?uri. <http://dbpedia.org/resource/Doug_Walgren> onto:almaMater ?uri . }
lcquad
Give me an estimate of the number of manufacturers whose products are managed by MTR?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:operator <http://dbpedia.org/resource/MTR> . ?x onto:manufacturer ?uri . }
lcquad
How many artists play as Rickenbacker?
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:instrument <http://dbpedia.org/resource/Rickenbacker> . ?uri rdf:type onto:Artist}
lcquad
Who are the associated musical artist of Carolyn Dennis?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Carolyn_Dennis onto:associatedMusicalArtist ?uri }
lcquad
Which citys mayor is anne hidalgo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mayor res:Anne_Hidalgo . }
lcquad
In which states are there bridges over the Pequea Creek?
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:river <http://dbpedia.org/resource/Pequea_Creek> . ?x onto:state ?uri . ?x rdf:type onto:Bridge}
lcquad
How many ingedients are required to make the Ragout Fin?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Ragout_fin> onto:ingredient ?uri . }
lcquad
List the people whose are in the board of an organization kickstarted in New York.
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:foundation <http://dbpedia.org/resource/New_York> . ?uri onto:board ?x . ?uri rdf:type onto:Person}
lcquad
Tell me the number of writers whose works have been recorded in Criteria Studios?
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:recordedIn <http://dbpedia.org/resource/Criteria_Studios> . ?x prop:writer ?uri . ?uri rdf:type onto:Artist}
lcquad
Under which archipelago does Canary Islands fall?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:archipelago res:Canary_Islands }
lcquad
name the home stadium of FC Spartak Moscow season 2011-12
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri }
lcquad
Name a company with one of the key person as Edwin Catmull and produces RenderMan?
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:keyPerson <http://dbpedia.org/resource/Edwin_Catmull> . ?uri prop:products <http://dbpedia.org/resource/RenderMan_(software)> . ?uri rd...
lcquad
How many owners are there of lines starting at the South Station?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:routeStart <http://dbpedia.org/resource/South_Station> . ?x prop:owner ?uri . }
lcquad
What are some musicians who have worked with Dean Ambrose?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist <http://dbpedia.org/resource/Dean_Ambrose> . ?uri rdf:type onto:MusicalArtist}
lcquad
Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium.
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:ground <http://dbpedia.org/resource/Rosario,_Santa_Fe> . ?uri prop:youthclubs ?x . }
lcquad
What are the television shows whose company is Playtone?
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 rdf:type onto:TelevisionShow}
lcquad
In which city are the schools whose district is Mumbai Suburban?
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:district <http://dbpedia.org/resource/Mumbai_Suburban_district> . ?x onto:city ?uri . ?x rdf:type onto:School}
lcquad
How many people currently play for Stoke City F.C.?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub <http://dbpedia.org/resource/Stoke_City_F.C.> . }
lcquad
Among the countries using Aureus as currency which had Nicomedia as an important place ?
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:currency <http://dbpedia.org/resource/Aureus> . ?uri rdf:type onto:Country}
lcquad
What are the outflow of the lakes which also has one of the outflow as Congo River ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Congo_River . ?x onto:outflow ?uri . }
lcquad
Whose tomb is in cities under Dane County of Wisconsin?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:territory <http://dbpedia.org/resource/Dane_County,_Wisconsin> . ?uri onto:restingPlace ?x . }
lcquad
How many cars succeeded the cars which were similar to Cadillac Fleetwood?
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/Cadillac_Fleetwood> prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}
lcquad
Was the body of Elsie Paroubek discovered in Chicago?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Elsie_Paroubek onto:bodyDiscovered res:Chicago }
lcquad
In how many languages did Marika Gombitova sing?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist <http://dbpedia.org/resource/Marika_Gombitová> . ?x prop:language ?uri . }
lcquad
How many railway lines go through the station maintained by Public transport authority of western australia?
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:owningOrganisation <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x onto:servingRailwayLine ?uri . ?uri rdf:type onto:RailwayLine}
lcquad
Count the different number of academic areas covered by publications of SAGE?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher <http://dbpedia.org/resource/SAGE_Publications> . ?x onto:academicDiscipline ?uri . }
lcquad
What are the political parties whose leaders have lived in the Prime Minister's House?
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/Prime_Minister's_House_(Colombo)> . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}
lcquad
Who currently operates the railway lines one of whose stockholder is Chicago, St Paul, Minneapolis and Omaha railway?
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:owner <http://dbpedia.org/resource/Chicago,_St._Paul,_Minneapolis_and_Omaha_Railway> . ?x onto:operatedBy ?uri . ?x rdf:type onto:Railwa...
lcquad
In which city is the distributor of Jeevan Mrityu located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jeevan_Mrityu prop:distributor ?x . ?x onto:locationCity ?uri . }
lcquad
How many services does the company who made Onedrive provide?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:service <http://dbpedia.org/resource/OneDrive> . ?x prop:services ?uri . }
lcquad
Count the different religions practiced by people who are in the Malaysian and Chinese association.
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:party <http://dbpedia.org/resource/Malaysian_Chinese_Association> . ?x onto:religion ?uri . }
lcquad
List all those whose relatives' nationality is United States.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:nationality res:United_States . ?uri onto:relative ?x . }
lcquad
What is the genre of Battle Chess?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri }
lcquad
President of Ghana is the leader title of which country?
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:leaderTitle <http://dbpedia.org/resource/President_of_Ghana> . ?uri rdf:type onto:Country}
lcquad
Whose associate is Publius Servilius Vatia Isauricus and has predecessor as Lucius Cornelius Lentulus Crus?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:associate <http://dbpedia.org/resource/Publius_Servilius_Vatia_Isauricus_(consul_48_BC)> . ?uri onto:predecessor <http://dbpedia.org/resource/Lucius_Cornelius_Lentulus_Crus> . }
lcquad
What is the style of architecture of Pontiac Building ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pontiac_Building onto:architecturalStyle ?uri }
lcquad
Which basketball players have played in the league of National Basketball Association?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:league <http://dbpedia.org/resource/National_Basketball_Association> . ?uri rdf:type onto:BasketballPlayer}
lcquad
Is Michelle D. Johnson the superintendent of United States Air Force Academy?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:United_States_Air_Force_Academy prop:superintendent res:Michelle_D._Johnson }
lcquad
Eric roth wrote how many screenplays?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:screenplay <http://dbpedia.org/resource/Eric_Roth> . }
lcquad