question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which Monty Python's movie is distributed by Cinema International Corporation ?
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:writer <http://dbpedia.org/resource/Monty_Python> . ?uri prop:distributor <http://dbpedia.org/resource/Cinema_International_Corporation>...
lcquad
Was tupac a member of Outlawz?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Outlawz prop:pastMembers res:Tupac_Shakur }
lcquad
Count the number of members of the organization which have Austria as one of the member ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership <http://dbpedia.org/resource/Austria> . ?x prop:membership ?uri }
lcquad
List the other members of the team where Jason Hayne currently plays?
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:currentMember <http://dbpedia.org/resource/Jason_Hayne> . ?x prop:name ?uri . ?x rdf:type onto:OrganisationMember}
lcquad
Who is married to Susan Weber Soros?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Susan_Weber_Soros . }
lcquad
list the producer of the movies in which Rosemarie DeWitt in the star cast?
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:starring <http://dbpedia.org/resource/Rosemarie_DeWitt> . ?x prop:producer ?uri . ?x rdf:type onto:Film}
lcquad
Which political party of Arunachal Pradesh Legislative Assembly election, 2014 was the leader of Rishikesh ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arunachal_Pradesh_Legislative_Assembly_election,_2014> prop:party ?uri. <http://dbpedia.org/resource/Rishikesh> onto:leaderName ?uri}
lcquad
How many groups have fought in wars where Richard Taylor fought too?
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/Richard_Taylor_(colonel)> prop:battles ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}
lcquad
Is Another Lonely Night in New York by the musical band Robin Gibb?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Another_Lonely_Night_in_New_York onto:musicalBand res:Robin_Gibb }
lcquad
To which settlement does Elliot Bay belong to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Elliott_Bay prop:cities ?uri }
lcquad
What are the albums whose artists have performed with the Tangerine Dream?
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:associatedBand <http://dbpedia.org/resource/Tangerine_Dream> . ?uri prop:artist ?x . ?uri rdf:type onto:Album}
lcquad
Name the river on Batoka Gorge Hydroelectric Power Station ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Batoka_Gorge_Hydroelectric_Power_Station onto:river ?uri }
lcquad
Did chris lebenzon edit Batman returns?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Batman_Returns prop:editing res:Chris_Lebenzon }
lcquad
Which people are known for appearing on the television show Dragon's Den?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:knownFor <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . ?uri rdf:type onto:Person}
lcquad
What university campuses are situated in Indiana?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:campus <http://dbpedia.org/resource/Indiana> . ?uri rdf:type onto:University}
lcquad
Who is the authority of Maine School of Science and Mathematics ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Maine_School_of_Science_and_Mathematics onto:authority ?uri }
lcquad
List some writers which speak one of the Germanic languages.
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:languageFamily <http://dbpedia.org/resource/Germanic_languages> . ?uri prop:language ?x . ?uri rdf:type onto:Writer}
lcquad
What are some awards given to people who were born in sweden?
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:birthPlace <http://dbpedia.org/resource/Sweden> . ?x prop:awards ?uri . ?x rdf:type onto:Person}
lcquad
ITV employes how many people?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:employer <http://dbpedia.org/resource/ITV_(TV_network)> . }
lcquad
What band has Joe Hahn and Chester Bennington?
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:currentMembers <http://dbpedia.org/resource/Joe_Hahn> . ?uri prop:currentMembers <http://dbpedia.org/resource/Chester_Bennington> . ?ur...
lcquad
Is the assembly of tofa ahin ethopia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Tofaş_Şahin onto:assembly res:Ethiopia }
lcquad
Was the street dogs of south central narrated by Queen Latifah?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Street_Dogs_of_South_Central prop:narrator res:Queen_Latifah }
lcquad
Name some schools with a bison as their mascot?
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:mascot <http://dbpedia.org/resource/Bison> . ?uri rdf:type onto:School}
lcquad
What has Carl Sagan written his books about?
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:author <http://dbpedia.org/resource/Carl_Sagan> . ?x prop:subject ?uri . ?x rdf:type onto:Book}
lcquad
In which state does the university which is the alma mater of Mateusz Morawiecki lie?
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/Mateusz_Morawiecki> prop:almaMater ?x . ?x prop:state ?uri . ?x rdf:type onto:University}
lcquad
Who voiced in Peanuts Motion Comics and The Peanuts Movie?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:voice res:Peanuts_Motion_Comics . ?uri onto:voice res:The_Peanuts_Movie . }
lcquad
Who is the owner of the bank where Thomas Secunda works ?
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/Thomas_Secunda> onto:occupation ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}
lcquad
What are some US citizens famous for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:nationality res:United_States . ?x onto:knownFor ?uri . }
lcquad
Who founded a company which served Mid Wales ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:regionServed res:Mid_Wales . ?x onto:foundedBy ?uri . }
lcquad
British people have edited which movies?
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:birthPlace <http://dbpedia.org/resource/United_Kingdom> . ?uri prop:editing ?x . ?uri rdf:type onto:Film}
lcquad
Who is the leader of the town where the Myntdu river originates?
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/Myntdu_River> onto:origin ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:Town}
lcquad
List the home town of the bands whose label is Alive Naturalsound 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/Alive_Naturalsound_Records> . ?x onto:hometown ?uri . ?x rdf:type onto:Band}
lcquad
Which broad cast area od CFRX is the country of North America Poker Tour ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri. res:North_American_Poker_Tour onto:country ?uri}
lcquad
List the subsequent work of the albums whose one of the subsequent work is Planet Waves?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork <http://dbpedia.org/resource/Planet_Waves> . ?x onto:subsequentWork ?uri . ?x rdf:type onto:Album}
lcquad
Name some basketball players whose team is coached by Fred Hoiberg?
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:coach <http://dbpedia.org/resource/Fred_Hoiberg> . ?uri prop:team ?x . ?uri rdf:type onto:BasketballPlayer}
lcquad
Give me some administrators of bridges over which cars can go?
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 onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}
lcquad
Who are some US colonels?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:rank <http://dbpedia.org/resource/Colonel_(United_States)> . }
lcquad
Where did Meg McGuffin graduated ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Meg_McGuffin onto:education ?uri }
lcquad
Was Citizen Kane cinematographed by Gregg Toland?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Citizen_Kane prop:cinematography res:Gregg_Toland }
lcquad
Count the different alma maters of people employed by the CNN
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:employer <http://dbpedia.org/resource/CNN> . ?x onto:almaMater ?uri . }
lcquad
What are the awards won by the person who is an authority of Latania verschaffeltii ?
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/Latania_verschaffeltii> prop:binomialAuthority ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person}
lcquad
Where did Steve Romeo dies ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Steve_Romeo onto:deathPlace ?uri }
lcquad
How many universities are in the National Collegiate Athletic Association?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . }
lcquad
Which company developed the language designed by Lars Bak?
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:designer <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x prop:developer ?uri . ?x rdf:type onto:Language}
lcquad
What is the mascot of the army unit whose commander is Peter Cosgrove ?
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:commander <http://dbpedia.org/resource/Peter_Cosgrove> . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}
lcquad
What is the common citizenship between JSM Hopoer and Robert Valentine ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._S._M._Hooper> onto:citizenship ?uri. <http://dbpedia.org/resource/Robert_Valentine_(composer)> onto:country ?uri}
lcquad
Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> prop:nationalOrigin ?uri. <http://dbpedia.org/resource/Start_+_Flug_H-101> prop:nationalOrigin ?uri . }
lcquad
Which religion followers are the members of Janata Dal?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:party res:Janata_Dal . ?x onto:religion ?uri . }
lcquad
Where are INKAS located which is also the state of origin for Jojo Chintoh ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jojo_Chintoh onto:stateOfOrigin ?uri. res:INKAS prop:locations ?uri}
lcquad
What is the workplace of Christopher S. Stewart ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Christopher_S._Stewart prop:employer ?uri }
lcquad
What are some things people born in Louisiana are famous for?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth <http://dbpedia.org/resource/Louisiana> . ?x prop:knownFor ?uri . }
lcquad
Where did Fort Lauderdale Strikers season of 16 take place?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri }
lcquad
Who is the founder of Hohenau, Paraguay?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hohenau,_Paraguay> onto:founder ?uri }
lcquad
Who gave the musical score of 9 to 5 (musical) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> onto:musicBy ?uri }
lcquad
Who are the spouse of the actors of Wrongfully Accused?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Wrongfully_Accused onto:starring ?x . ?x onto:spouse ?uri . }
lcquad
Count all that was built by a company whose leader is Kazuo Hirai?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople <http://dbpedia.org/resource/Kazuo_Hirai> . ?uri onto:manufacturer ?x . }
lcquad
Which producer of Wizards and the aliens is also the notable work of russell T Davies ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Wizards_vs_Aliens onto:producer ?uri. res:Russell_T_Davies onto:notableWork ?uri}
lcquad
Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/England_national_under-21_football_team> prop:coach ?uri. <http://dbpedia.org/resource/2000–01_Aston_Villa_F.C._season> prop:name ?uri}
lcquad
For which band did Dave Hollister perform in the past?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:pastMembers res:Dave_Hollister }
lcquad
Name the scientist who is known for inventing Anthrax and was a member of Royal 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 onto:knownFor <http://dbpedia.org/resource/Anthrax> . ?uri prop:prizes <http://dbpedia.org/resource/Royal_Society> . ?uri rdf:type onto:Scie...
lcquad
Which show developed by Brain Graden has theme music composed by Primus ?
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:themeMusicComposer <http://dbpedia.org/resource/Primus_(band)> . ?uri ...
lcquad
Which builder has made concrete bridges?
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:material <http://dbpedia.org/resource/Concrete> . ?x onto:builder ?uri . ?x rdf:type onto:Bridge}
lcquad
What is the serving railway line of Rostov-Glavny ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> onto:servingRailwayLine ?uri }
lcquad
How many different products are there of the companies located in the US?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location <http://dbpedia.org/resource/United_States> . ?x onto:product ?uri . }
lcquad
What is that river whose source gets water from the Shannon cave?
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:inflow <http://dbpedia.org/resource/Shannon_Cave> . ?uri onto:source ?x . ?uri rdf:type onto:River}
lcquad
How many licensee are there, of the radio stations whose area is Nashville, Tennessee ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x prop:licensee ?uri . }
lcquad
What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Albert_Kwesi_Ocran prop:allegiance ?uri. res:Jojo_Chintoh onto:stateOfOrigin ?uri}
lcquad
Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2008–09_Marquette_Golden_Eagles_men's_basketball_team> prop:headcoach ?uri }
lcquad
Who is the vice president of Jared Bernstein ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jared_Bernstein onto:vicePresident ?uri }
lcquad
What is the name of the information appliance by sony whose 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:manufacturer <http://dbpedia.org/resource/Sony> . ?uri prop:predecessor <http://dbpedia.org/resource/PlayStation_2> . ?uri rdf:type ont...
lcquad
Who is the monarch of Bertalan Szemere ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bertalan_Szemere onto:monarch ?uri }
lcquad
What actor starred in Splash and is married to Rita Wilson?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Splash_(film)> prop:starring ?uri. <http://dbpedia.org/resource/Rita_Wilson> prop:spouse ?uri . }
lcquad
What is the place of birth of Lauren Briggs ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lauren_Briggs prop:placeOfBirth ?uri }
lcquad
What is the river on which the Kariba Dam and Batoka Gorge Hydroelectirc power station exist?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kariba_Dam onto:river ?uri. res:Batoka_Gorge_Hydroelectric_Power_Station onto:river ?uri . }
lcquad
Players from how many teams have participated in the National Hockey League?
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:league <http://dbpedia.org/resource/National_Hockey_League> . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}
lcquad
What are some causes of death of European Americans?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:European_Americans . ?x onto:deathCause ?uri . }
lcquad
Did Stan Lee create the Iceman comics?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Iceman_(comics)> prop:creators <http://dbpedia.org/resource/Stan_Lee> }
lcquad
What is the order of the Omar D. Conger where Robert Sarvis was also the nominee ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Omar_D._Conger prop:order ?uri. res:Robert_Sarvis onto:nominee ?uri}
lcquad
Which hockey team is coached by mike babcock?
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:headCoach <http://dbpedia.org/resource/Mike_Babcock> . ?uri rdf:type onto:HockeyTeam}
lcquad
Which battle of Khalid bin Sultan was also the conflict of Steve Buyer ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Khalid_bin_Sultan prop:battles ?uri. res:Steve_Buyer onto:battle ?uri}
lcquad
What are the movies whose editor is Robert Wise?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:editing <http://dbpedia.org/resource/Robert_Wise> . ?uri rdf:type onto:Film}
lcquad
List the music of Open House (American Horror Story)?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Open_House_(American_Horror_Story)> prop:music ?uri }
lcquad
What are the television shows whose network's sister station is BBC Two?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation <http://dbpedia.org/resource/BBC_Two> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Where did the narrators of the Championship snooker die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Championship_Snooker prop:narrated ?x . ?x onto:deathPlace ?uri . }
lcquad
What are the relatives of the rugby player one of whose relatives is Nick Williams?
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:relatives <http://dbpedia.org/resource/Nick_Williams> . ?x onto:relative ?uri . ?x rdf:type onto:RugbyPlayer}
lcquad
Who is the performer of Bengali in Platforms ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bengali_in_Platforms onto:artist ?uri }
lcquad
What are some families of mammals in the animal kingdom?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:kingdom <http://dbpedia.org/resource/Animal> . ?x onto:family ?uri . ?x rdf:type onto:Mammal}
lcquad
Where is the headquarters of the public transit system which owns the American Boulevard (Metro Transit station) located ?
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/American_Boulevard_(Metro_Transit_station)> onto:owningOrganisation ?x . ?x prop:headquarters ?uri . ?x rdf:type on...
lcquad
How many things are people who died in St. Petersburg known for?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace <http://dbpedia.org/resource/Saint_Petersburg> . ?x onto:knownFor ?uri . }
lcquad
List down the important people of The Elders ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Elders_(organization)> prop:keyPeople ?uri }
lcquad
Which TV show's executive producer is Douglas Netter and composed by Stewart Copeland ?
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:executiveProducer <http://dbpedia.org/resource/Douglas_Netter> . ?uri prop:composer <http://dbpedia.org/resource/Stewart_Copeland> . ?u...
lcquad
Does nintendo have a division called Nintendo Entertainment Planning & Development?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Nintendo> prop:divisions <http://dbpedia.org/resource/Nintendo_Entertainment_Planning_&_Development> }
lcquad
Name the rivers which originate from within Pittsburg?
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:cities <http://dbpedia.org/resource/Pittsburg,_New_Hampshire> . ?uri onto:source ?x . ?uri rdf:type onto:River}
lcquad
In how many nations is Coconut a common food ingredient?
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:ingredient <http://dbpedia.org/resource/Coconut> . ?x prop:country ?uri . ?uri rdf:type onto:Country}
lcquad
Where do the rivers from greater London flow into?
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:sourceRegion <http://dbpedia.org/resource/Greater_London> . ?x prop:mouthLocation ?uri . ?x rdf:type onto:River}
lcquad
Which football teams are in a city where Oakland Athletics were the tenants?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/Oakland_Athletics> . ?uri onto:locationCity ?x . ?uri rdf:type onto:AmericanFootballTeam}
lcquad
Who all have created new kinds of cookies?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:type res:Cookie . ?x prop:creator ?uri . }
lcquad
What country is Jeffrey Werleman from, which also has the American Mediterranean Sea?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jeffrey_Werleman onto:birthPlace ?uri. res:American_Mediterranean_Sea onto:country ?uri . }
lcquad
List the television shows whose network's owning company is Turner Broadcasting System?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
List the schools of the athlete with Balgowan as one of the school ?
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:school <http://dbpedia.org/resource/Balgowan,_KwaZulu-Natal> . ?x prop:school ?uri . ?x rdf:type onto:Athlete}
lcquad