question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Who appointed the successor of Thomas Bee?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Thomas_Bee onto:successor ?x . ?x prop:appointer ?uri . }
lcquad
Was Buzz Williams the headcoach of the Marquette Golden Eagles mens team?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/2013–14_Marquette_Golden_Eagles_men's_basketball_team> prop:headcoach <http://dbpedia.org/resource/Buzz_Williams> }
lcquad
List books authored by Miguel de Cervantes and published by Francisco de Robles ?
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:author <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri onto:publisher <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri...
lcquad
List down all notable works of Neil Cross ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Neil_Cross onto:notableWork ?uri }
lcquad
What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Buckhurst_Hill_County_High_School> onto:localAuthority ?uri. <http://dbpedia.org/resource/Sarah_Champion_(presenter)> prop:birthPlace ?uri}
lcquad
what awards have been giving to Muhammad Yunus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Muhammad_Yunus onto:award ?uri }
lcquad
Who is the meaning of the name Isa which was also one of the subject of play The Prodigal Son ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> prop:meaning ?uri. <http://dbpedia.org/resource/The_Prodigal_Son_(play)> prop:subject ?uri}
lcquad
Who are the parent of the people that has POD as Redding, Connecticut ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Redding,_Connecticut> . ?x onto:parent ?uri . }
lcquad
Was saddam hussein at the rank of Mushir ever?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Saddam_Hussein prop:rank res:Mushir }
lcquad
What are the things Eric Schiller known for ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Eric_Schiller onto:knownFor ?uri }
lcquad
List the parts of Greater San Antonio?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Greater_San_Antonio onto:part ?uri }
lcquad
What is the president whose lieutenants are Winston Bryant and Joe Purcell?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:lieutenant <http://dbpedia.org/resource/Winston_Bryant> . ?uri onto:lieutenant <http://dbpedia.org/resource/Joe_Purcell> . ?uri rdf:type onto:President}
lcquad
Where is Temenos Group founded ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri }
lcquad
Name some leaders of the parent organisation of the Gestapo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Gestapo onto:parentOrganisation ?x . ?x onto:leader ?uri . }
lcquad
How many venues are located 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 COUNT(?uri) WHERE {?uri prop:address <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:Venue}
lcquad
What are some neighboring cities of cologny?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities res:Cologny . }
lcquad
What religion is Kabir Suman from?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:birthName res:Kabir_Suman . ?x prop:religion ?uri . }
lcquad
Does Kirk Hammett play the Gibson Flying V?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Kirk_Hammett onto:instrument res:Gibson_Flying_V }
lcquad
Who are the people who died in a place architected by Jens Jensen
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:architect <http://dbpedia.org/resource/Jens_Jensen_(landscape_architect)> . ?uri onto:deathPlace ?x . ?uri rdf:type onto:Person}
lcquad
Who has Kelly Osbourne and Ozzy Osbourne as relatives?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:relative res:Kelly_Osbourne . ?uri onto:relative res:Ozzy_Osbourne . }
lcquad
Name the television show whose subsequent work is Frasier and opening theme is Where Everybody Knows Your Name?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri onto:openingTheme <http://dbpedia.org/resource/Where_Everybody_Knows_Your_Name> . ?uri rdf:type onto:TelevisionShow}
lcquad
Name the television show whose company is HBO and Playtone?
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/HBO> . ?uri prop:company <http://dbpedia.org/resource/Playtone> . ?uri rdf:type onto:TelevisionSho...
lcquad
Name the cover artist of the adventure of Tom sawyer ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri }
lcquad
Who did Bruce Bochy play for ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bruce_Bochy onto:team ?uri }
lcquad
Name the company which provides Outlook.com as service and also has a product named Microsoft Azure ?
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:services <http://dbpedia.org/resource/Outlook.com> . ?uri onto:product <http://dbpedia.org/resource/Microsoft_Azure> . ?uri rdf:type on...
lcquad
Name the company with product named Microsft Azure and provides OneDrive as a service ?
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:product <http://dbpedia.org/resource/Microsoft_Azure> . ?uri prop:services <http://dbpedia.org/resource/OneDrive> . ?uri rdf:type onto:...
lcquad
What is the deathplace of the Anatoly Kharlampiyev which is also the death place of Lyudmila Buldakova?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Anatoly_Kharlampiyev prop:deathPlace ?uri. res:Lyudmila_Buldakova prop:deathPlace ?uri . }
lcquad
What is the Band whose band member is Mark Middleton?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mark_Middleton }
lcquad
Is Tamera Mowry the former band member of Voices?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Voices_(group)> onto:formerBandMember <http://dbpedia.org/resource/Tamera_Mowry> }
lcquad
List the actors of Lucy Sullivan Is Getting Married?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lucy_Sullivan_Is_Getting_Married prop:starring ?uri }
lcquad
How many people have worked in the band one of whose current member is Hynief?
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:currentMembers <http://dbpedia.org/resource/Hynief> . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}
lcquad
Enumerate all those who are in the Board of companies founded in New York?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation <http://dbpedia.org/resource/New_York> . ?uri onto:board ?x . }
lcquad
Name the awards that have been given to the writer made famous for Creature Comforts?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:notableWork <http://dbpedia.org/resource/Creature_Comforts> . ?x onto:award ?uri . ?x rdf:type onto:Writer}
lcquad
Murray Gold has composed music for how many things?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:composer <http://dbpedia.org/resource/Murray_Gold> . }
lcquad
In which wars did Percy Fitzwallace fight?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Percy_Fitzwallace prop:battles ?uri }
lcquad
What other awards have Becket fund for religious liberty winners received?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:award res:Becket_Fund_for_Religious_Liberty . ?x prop:awards ?uri . }
lcquad
Who was the vice president under which elizabeth alexander served?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elizabeth_Alexander_(press_secretary)> onto:vicePresident ?uri . }
lcquad
How many people have been presenters for NBC shows?
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:channel <http://dbpedia.org/resource/NBC> . ?x prop:presenter ?uri . ?uri rdf:type onto:Person}
lcquad
Name the river whose source region is North-Western Province, Zambia and source location is Ikelenge District?
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:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zambia> . ?uri prop:sourceLocation <http://dbpedia.org/resource/Ikelen...
lcquad
Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri. res:Peter_Thorneycroft prop:primeminister ?uri}
lcquad
Name the states which have been billed by the wrestlers who has also billed Georgia ?
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:billed <http://dbpedia.org/resource/Georgia_(U.S._state)> . ?x prop:billed ?uri . ?x rdf:type onto:Wrestler}
lcquad
List the outflows of the lake whose one of the outflows is Benu 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:Benué_River . ?x onto:outflow ?uri . }
lcquad
Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier?
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:openingTheme <http://dbpedia.org/resource/Te_Deum_(Charpentier)> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Marc-Antoin...
lcquad
Is Grand Bahama lie in the achipelago of the bahamas?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Grand_Bahama prop:archipelago res:The_Bahamas }
lcquad
Who produced wizards vs aliens?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Wizards_vs_Aliens onto:producer ?uri }
lcquad
Who is the distributer of Rev ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rev_(drink)> prop:distributor ?uri }
lcquad
Which city was founded by George Washington and John Forbes (British Army officer)?
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:founder <http://dbpedia.org/resource/George_Washington> . ?uri onto:founder <http://dbpedia.org/resource/John_Forbes_(British_Army_offic...
lcquad
Which is the city closest to both the Lodaiska site and the home of David w brown?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:LoDaisKa_Site onto:nearestCity ?uri. res:David_W._Brown_House onto:nearestCity ?uri . }
lcquad
Is Michael Schumacher the first driver of the 1994 grand prix?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:1994_Hungarian_Grand_Prix prop:firstDriver res:Michael_Schumacher }
lcquad
What are the books written by authors who died in Madrid?
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:restingPlace <http://dbpedia.org/resource/Madrid> . ?uri prop:author ?x . ?uri rdf:type onto:Book}
lcquad
What is father's name who also served in military of Carlene Carter?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:children res:Carlene_Carter . }
lcquad
Count the number of broadcast area of the TV stations which serves in Agalga ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea <http://dbpedia.org/resource/Agaléga> . ?x prop:broadcastArea ?uri }
lcquad
In which wars army men 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 ?uri WHERE { ?x prop:awards <http://dbpedia.org/resource/Croix_de_guerre_1939–1945_(France)> . ?x prop:battles ?uri . ?x rdf:type onto:MilitaryPerson}
lcquad
Where is the residence of the governor of Bangkok ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bangkok onto:leaderName ?x . ?x prop:residence ?uri . }
lcquad
Name the scientist whose supervisor was Ernest Rutherford and had a doctoral students named Charles Drummond Ellis?
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:doctoralAdvisor <http://dbpedia.org/resource/Ernest_Rutherford> . ?uri prop:doctoralStudents <http://dbpedia.org/resource/Charles_Drummo...
lcquad
What is the scientist whose PhD students are Erich Bagge and erban ieica?
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:doctoralStudents <http://dbpedia.org/resource/Erich_Bagge> . ?uri prop:doctoralStudents <http://dbpedia.org/resource/Șerban_Țițeica> . ...
lcquad
Name the movies writtten by the group Monty Python ?
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/Monty_Python> . ?uri rdf:type onto:Film}
lcquad
Where is Lao Plaza Hotel located?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lao_Plaza_Hotel prop:developer ?uri }
lcquad
Was Walt Disney the cinematographer of Mickey's Mellerdrammer?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Mickey's_Mellerdrammer> prop:cinematography <http://dbpedia.org/resource/Walt_Disney> }
lcquad
Which sitcom's company is Paramount Television and is located in Cheers Beacon hill ?
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:location <http://dbpedia.org/resource/Cheers_Beacon_Hill> . ?uri...
lcquad
Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri}
lcquad
Which Tv series led to Frasier?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri rdf:type onto:TelevisionShow}
lcquad
Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne?
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:children <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri prop:children <http://dbpedia.org/resource/Julian_Hawthorne> . ?uri ...
lcquad
What is the profession of William Luther Hill ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri }
lcquad
Name all the hubs of the airlines whose one of the hubs is Selangir ?
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:hubs <http://dbpedia.org/resource/Selangor> . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}
lcquad
How many other school are there of the rugby players whose school is Michaelhouse ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school <http://dbpedia.org/resource/Michaelhouse> . ?x prop:school ?uri }
lcquad
In which country can I find the State Academic Opera and Ballet Theater and Baku Puppet Theatre?
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/Azerbaijan_State_Academic_Opera_and_Ballet_Theater> onto:locationCountry ?uri. <http://dbpedia.org/resource/Baku_Puppet_Theatre> onto:locationCountry ?uri . ?ur...
lcquad
What are the films whose atleast one cast member died due to Colorectal cancer?
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:deathCause <http://dbpedia.org/resource/Colorectal_cancer> . ?uri prop:starring ?x . ?uri rdf:type onto:Film}
lcquad
Who is the President of United World College of Costa Rica ?
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 }
lcquad
Which city has it's landmark as Cheasty Boulevard South?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Cheasty_Boulevard_South onto:maintainedBy ?uri }
lcquad
List down the opponents of Frank Stilwell?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Frank_Stilwell onto:opponent ?uri }
lcquad
Name the movie whose director is Ridley Scott and it's music composer is Vangelis?
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:director <http://dbpedia.org/resource/Ridley_Scott> . ?uri onto:musicComposer <http://dbpedia.org/resource/Vangelis> . ?uri rdf:type on...
lcquad
Where is Bogobiri House located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Bogobiri_House prop:locationCity ?uri }
lcquad
What is the religion of the leader of South Korean legislative election of 1992 ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Korean_legislative_election,_1992> prop:leader ?x . ?x onto:religion ?uri . }
lcquad
Who is the writer of Neverwhere (radio play) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neverwhere_(radio_play)> onto:writer ?uri }
lcquad
How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople <http://dbpedia.org/resource/Hillary_Clinton> . ?x prop:keyPeople ?uri }
lcquad
List the stadium of the teams which uses Nea Smyrni as one of the stadium ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:stadium res:Nea_Smyrni_Stadium . ?x prop:stadium ?uri . }
lcquad
How many currencies are in used in places where people speak French?
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:officialLanguage <http://dbpedia.org/resource/French_language> . ?x onto:currency ?uri . ?uri rdf:type onto:Currency}
lcquad
Which football managers managed Middlesbrough F.C.?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:managerClub res:Middlesbrough_F.C. }
lcquad
Who are some american football players whose high school is Oktoc, Mississippi?
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:highSchool <http://dbpedia.org/resource/Oktoc,_Mississippi> . ?uri rdf:type onto:AmericanFootballPlayer}
lcquad
Name the company founded in US and created Visual Studio ?
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:foundation <http://dbpedia.org/resource/United_States> . ?uri prop:products <http://dbpedia.org/resource/Microsoft_Visual_Studio> . ?ur...
lcquad
How many factions were involved in the battles fought by Arthur St. Clair?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Arthur_St._Clair> prop:battles ?x . ?x prop:combatant ?uri . }
lcquad
Count the number of ingredient of the foods which have one of the ingredient is Pork ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient <http://dbpedia.org/resource/Pork> . ?x onto:ingredient ?uri }
lcquad
What is the television show whose opening theme is Te Deum (Charpentier)?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme <http://dbpedia.org/resource/Te_Deum_(Charpentier)> . ?uri rdf:type onto:TelevisionShow}
lcquad
List the ideologies of the party of Boonchu Rojanastien?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Boonchu_Rojanastien prop:party ?x . ?x onto:ideology ?uri . }
lcquad
To which country do gabriel paris gordillo and gustavo rojas pinilla owe their allegiance?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Gabriel_París_Gordillo prop:allegiance ?uri. res:Gustavo_Rojas_Pinilla prop:allegiance ?uri . }
lcquad
Who were the narrators of the albums which had Ringo Starr as one of the narrator ?
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:narrated <http://dbpedia.org/resource/Ringo_Starr> . ?x prop:narrated ?uri . ?x rdf:type onto:Album}
lcquad
How many people have played for the ones who own the stadium of Bankers Life Fieldhouse?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:arena <http://dbpedia.org/resource/Bankers_Life_Fieldhouse> . ?uri prop:team ?x . }
lcquad
List the newspapers whose headquarters's time zone is Central European Summer Time.
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:timeZone <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri prop:headquarters ?x . ?uri rdf:type onto:Newspaper}
lcquad
Where does the river end which starts in Mazabuka?
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/Mazabuka> . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}
lcquad
Count all american football players whose former team owns Lucas Oil Stadium ?
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:city <http://dbpedia.org/resource/Lucas_Oil_Stadium> . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer}
lcquad
What are the academic interests of the advisor of Paul Demiville ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville onto:academicAdvisor ?x . ?x prop:fields ?uri . }
lcquad
Which awards are presented by Swedish Academy?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Swedish_Academy> . ?uri rdf:type onto:Award}
lcquad
Name the university whose teams have been managed by Albertin Montoya?
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/Albertin_Montoya> prop:managerclubs ?x . ?x onto:university ?uri . ?x rdf:type onto:SportsTeam}
lcquad
what are some journals of academic Philosophy
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:discipline res:Philosophy }
lcquad
Who is the writer of the Cavalcade of America and The United States Steel Hour ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Cavalcade_of_America onto:writer ?uri. res:The_United_States_Steel_Hour onto:writer ?uri . }
lcquad
Where did the conflict take place where Liu Mingchuan fought?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liu_Mingchuan prop:battles ?x . ?x onto:territory ?uri . }
lcquad
Which rivers originate from Dowra?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Dowra }
lcquad
What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> onto:residence ?uri. <http://dbpedia.org/resource/John_McTaggart_(jockey)> onto:deathPlace ?uri}
lcquad
What is the military rank of the commanders of Regiment of Mounted Grenadiers?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Regiment_of_Mounted_Grenadiers prop:notableCommanders ?x . ?x onto:militaryRank ?uri . }
lcquad