question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Which company was the designer of South African class 11e and RENFE class 333 ? | 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/South_African_Class_11E> onto:designer ?uri. <http://dbpedia.org/resource/RENFE_Class_333> onto:designer ?uri . ?uri rdf:type onto:Company} | lcquad |
For how many things are people famous, who were born in Nebraska? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Nebraska> . ?x onto:knownFor ?uri . } | lcquad |
List the maintainers of Pandaruan Bridge? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri } | lcquad |
List the starring of the movies whose label is T-Series ? | 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/T-Series> . ?x prop:starring ?uri . ?x rdf:type onto:Film} | lcquad |
What is the home town of the musical artist who is the current members of Slapstick? | 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/Slapstick_(band)> prop:currentMembers ?x . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist} | lcquad |
What are some rivers in Zambia which have a dam on 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 prop:country <http://dbpedia.org/resource/Zambia> . ?x onto:river ?uri . ?x rdf:type onto:Dam} | lcquad |
What is the religion of the successor of Chatumongol Sonakul? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Chatumongol_Sonakul onto:successor ?x . ?x onto:religion ?uri . } | lcquad |
What is the label of the singles whose group is Outlawz ? | 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:musicalArtist <http://dbpedia.org/resource/Outlawz> . ?x prop:label ?uri . ?x rdf:type onto:Single} | lcquad |
What are the television shows whose network's successor 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:successor <http://dbpedia.org/resource/BBC_Two> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
what does the cahora bassa flow into? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Cahora_Bassa prop:inflow ?uri } | lcquad |
where did Alfred Tarnowski die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Alfred_Tarnowski prop:placeOfDeath ?uri } | lcquad |
Does Walson Augustin play for the Brothers Union? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Walson_Augustin prop:currentclub res:Brothers_Union } | lcquad |
In which city is Arsenal Cider House ? located ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Arsenal_Cider_House prop:locationCity ?uri } | lcquad |
Name the television show distributed by Broadcast syndication and voiced by Eliza Schneider? | 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:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri prop:voices <http://dbpedia.org/resource/Eliza_Schneider> . ?uri... | lcquad |
Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:LG_Optimus_Vu onto:operatingSystem ?uri. res:Manu_Cornet prop:employer ?uri} | lcquad |
Which country had the county seats as History of Trier and Mediolanum? | 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/History_of_Trier> . ?uri onto:capital <http://dbpedia.org/resource/Mediolanum> . ?uri rdf:type onto:Country} | lcquad |
List the American MEditerranean Sea city is also the place of death of Laszlo Bellak ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Laszlo_Bellak onto:deathPlace ?uri} | lcquad |
Name the common record label of I pray on Christmas and Next Thing ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:Next_Thing onto:recordLabel ?uri} | lcquad |
List down the TV shows whose producer is Stephen E. Ambros and writer is John Orloff ? | 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:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri prop:writer <http://dbpedia.org/resource/John_Orloff> . ?uri rdf:type ... | lcquad |
What is the alma mater of Fikret Orman? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Fikret_Orman prop:almaMater ?uri } | lcquad |
Where are the National Academy Museum and School awardwinners buried? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:award res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . } | lcquad |
Where is the person from whose military rank is Airman first class? | 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:militaryRank <http://dbpedia.org/resource/Airman_first_class> . ?x prop:state ?uri . ?x rdf:type onto:Person} | lcquad |
Who wrote the US steel hour? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_United_States_Steel_Hour onto:writer ?uri } | lcquad |
Where is Snake Island located ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Snake_Island_(Black_Sea)> prop:locationCountry ?uri } | lcquad |
List all the co-founders of the non for profit which have founding member as David pressman ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy <http://dbpedia.org/resource/David_Pressman> . ?x onto:foundedBy ?uri . ?x rdf:type onto:Non-ProfitOrganisation} | lcquad |
What is the home town of the Rolando Gomez is the DOD of the Clyde McNeal ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri. res:Clyde_McNeal prop:deathDate ?uri} | lcquad |
Which soccer players are currently playing for NYC FC? | 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:currentclub <http://dbpedia.org/resource/New_York_City_FC> . ?uri rdf:type onto:SoccerPlayer} | lcquad |
Name a writer who was educated in Saint Petersburg and had a son named Lyubov Dostoyevskaya ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:education <http://dbpedia.org/resource/Saint_Petersburg> . ?uri onto:child <http://dbpedia.org/resource/Lyubov_Dostoyevskaya> . ?uri rdf:type onto:Writer} | lcquad |
What shows used to air on the channel which was earlier known as "The 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 { ?x onto:predecessor <http://dbpedia.org/resource/The_Comedy_Channel_(United_States)> . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionS... | lcquad |
Which company owns Evraz ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Evraz onto:owningCompany ?uri } | lcquad |
How many party leaders are there whose parties are headquartered in Berlin? | 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:headquarter <http://dbpedia.org/resource/Berlin> . ?x onto:leader ?uri . ?uri rdf:type onto:Politician} | lcquad |
Where was the trainer of Java Gold born? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Java_Gold prop:trainer ?x . ?x prop:birthPlace ?uri . } | lcquad |
Where can I find some buildings of modern architecture? | 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:architecturalStyle <http://dbpedia.org/resource/Modern_architecture> . ?x prop:address ?uri . ?x rdf:type onto:Building} | lcquad |
Who are the people who played for San Francisco 49ers? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:team res:San_Francisco_49ers . } | lcquad |
Was Zachary Taylor a commander of the sixth infantry regiment of US? | PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/6th_Infantry_Regiment_(United_States)> onto:notableCommander <http://dbpedia.org/resource/Zachary_Taylor> } | lcquad |
Name a famous relative of barry voight | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:relative res:Barry_Voight . } | lcquad |
With which artist did the musical artist of Groove Thang collaborated ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Groove_Thang onto:musicalArtist ?x . ?x prop:associatedActs ?uri . } | lcquad |
Where is the office of P Elmo Futrell Jr? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/P._Elmo_Futrell,_Jr.> prop:office ?uri . } | lcquad |
Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano? | 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:awards <http://dbpedia.org/resource/Royal_Society> . ?uri onto:academicAdvisor <http://dbpedia.org/resource/Franz_Brentano> . ?uri rdf:... | lcquad |
What are the last two studio albums of Moondog Matinee ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri } | lcquad |
Where can i find salad based food? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient res:Salad . ?x prop:country ?uri . } | lcquad |
Does Walson Augustin play as a midfielder? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Walson_Augustin onto:position res:Midfielder } | lcquad |
List places that are associated to cities in the state of Mecklenburg-Vorpommern. | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:federalState <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?uri prop:cities ?x . } | lcquad |
Which awards did the writer, who is the creator of Creature Comforts, won ? | 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/Creature_Comforts> prop:creator ?x . ?x prop:awards ?uri . ?x rdf:type onto:Writer} | lcquad |
Who all have written songs that were then recorded in the 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 ?uri WHERE { ?x onto:recordedIn <http://dbpedia.org/resource/Criteria_Studios> . ?x prop:writer ?uri . ?x rdf:type onto:MusicalWork} | lcquad |
Count the number of sports played by the universities whihc also plays Volleyball ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics <http://dbpedia.org/resource/Volleyball> . ?x prop:athletics ?uri } | lcquad |
Is Sao Paulo the largest city of Brazil? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Brazil prop:largestCity res:São_Paulo } | lcquad |
Which educational institutes have campuses at Iowa and 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/Iowa> . ?uri onto:campus <http://dbpedia.org/resource/Indiana> . ?uri rdf:type onto:EducationalInstitution} | lcquad |
In which areas are the radio stations of Monticello, Maine available 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 ?uri WHERE { ?x prop:city <http://dbpedia.org/resource/Monticello,_Maine> . ?x prop:area ?uri . ?x rdf:type onto:RadioStation} | lcquad |
Through how many labels has Katy B released her singles? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:writer <http://dbpedia.org/resource/Katy_B> . ?x onto:recordLabel ?uri . } | lcquad |
Who appointed William L. Dayton ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_L._Dayton onto:appointer ?uri } | lcquad |
Is PIAS Recordings the distributing label of Wichita Recordings? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Wichita_Recordings onto:distributingLabel res:PIAS_Recordings } | lcquad |
Was Gerald Gibbs the cinematographer of X the unknown? | PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/X_the_Unknown> onto:cinematography <http://dbpedia.org/resource/Gerald_Gibbs_(cinematographer)> } | lcquad |
Trevor Peacock has narrated in which movie? | 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:narrator <http://dbpedia.org/resource/Trevor_Peacock> . ?uri rdf:type onto:Film} | lcquad |
To which educational institutions did Lesli Sanchez go for her studies? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Leslie_Sanchez onto:education ?uri } | lcquad |
What are some famous artists who rocked a Les Paul? | 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:notableInstruments <http://dbpedia.org/resource/Gibson_Les_Paul> . ?uri rdf:type onto:MusicalArtist} | lcquad |
Name the sstadium of 2015 Pro Duta FC season ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:2015_Pro_Duta_FC_season prop:stadium ?uri } | lcquad |
Name some people who are buried in a place governed by the US Department of the Interior? | 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:governingBody <http://dbpedia.org/resource/United_States_Department_of_the_Interior> . ?uri prop:restingplace ?x . ?uri rdf:type onto:Pe... | lcquad |
Pointe d'Aveneyre belongs to which mountain range? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> onto:mountainRange ?uri } | lcquad |
Jerry Bock's musicals has been adapted from how many things? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music <http://dbpedia.org/resource/Jerry_Bock> . ?x onto:basedOn ?uri . } | lcquad |
Which country has leaders Karu Jayasuriya and Ranil Wickremesinghe? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:leader <http://dbpedia.org/resource/Karu_Jayasuriya> . ?uri onto:leader <http://dbpedia.org/resource/Ranil_Wickremesinghe> . ?uri rdf:type onto:Country} | lcquad |
Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri onto:director <http://dbpedia.org/resource/Joel_Schumacher> } | lcquad |
In which city was the company founded , which owns Grasim Bhiwani Textiles? | 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/Grasim_Bhiwani_Textiles> prop:parent ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company} | lcquad |
What television shows's distributor is Eurovision? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:distributor <http://dbpedia.org/resource/Eurovision_(network)> . ?uri rdf:type onto:TelevisionShow} | lcquad |
List the judge of the TV show whose one of the judge is Ludacris ? | 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:judges <http://dbpedia.org/resource/Ludacris> . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow} | lcquad |
Whose youth clubs used to participate in Argentine Primera Division? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:league res:Argentine_Primera_División . ?uri prop:youthclubs ?x . } | lcquad |
List some people who were opponents of someone who was died by hanging? | 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:deathCause <http://dbpedia.org/resource/Hanging> . ?x onto:opponent ?uri . ?x rdf:type onto:Person} | lcquad |
Who owns the railway line which goes through the Newark Station? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Newark_station_(Delaware)> prop:line ?x . ?x prop:owner ?uri . } | lcquad |
Which magazine's editor is married to Crystal Harris? | 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:spouse <http://dbpedia.org/resource/Crystal_Harris> . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine} | lcquad |
Is Compaq a software company? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Compaq onto:industry res:Software } | lcquad |
What is the currency of the country of Kerguelen Islands? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:governmentType ?x . ?x onto:currency ?uri . } | lcquad |
Which sitcom is broadcasted by FOX and presented by Brian Dunkleman? | 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:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri prop:presenter <http://dbpedia.org/resource/Brian_Dunkleman> . ?u... | lcquad |
Which sports are played in the alma mater of Amitava Datta? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Amitava_Datta prop:almaMater ?x . ?x onto:sport ?uri . } | lcquad |
What is the parent company of Edsel? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Edsel prop:parent ?uri } | lcquad |
What are some TV shows whose voice actors are from Truckee, California, 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 ?uri WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Truckee,_California> . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
Which person won Screen actors Guild Life Time Achievement award and has resting palce in Palo Alto, California ? | 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:restingPlace <http://dbpedia.org/resource/Palo_Alto,_California> . ?uri onto:award <http://dbpedia.org/resource/Screen_Actors_Guild_Life... | lcquad |
How many shows are made by 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 COUNT(?uri) WHERE {?uri prop:company <http://dbpedia.org/resource/Playtone> . ?uri rdf:type onto:TelevisionShow} | lcquad |
List the mascot of the universities which are a part of National Collegiate Athletic Association. | 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:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?x prop:mascot ?uri . ?x rdf:type onto:University} | lcquad |
What is the route junction of Rhode Island Route 15 ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri } | lcquad |
Does the owyhee river flow into oregon? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Owyhee_River onto:mouthMountain res:Oregon } | lcquad |
What is the famous relative of Mrunalini Kunte known for? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:relatives res:Mrunalini_Kunte . ?x prop:knownFor ?uri . } | lcquad |
From which country is Lawrence Okoye's nationality ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Lawrence_Okoye prop:nationality ?uri } | lcquad |
From which party is the politician who was selected in Barasat constituency? | 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:constituency <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder} | lcquad |
Name the associate acts of Martin Pugh? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri } | lcquad |
Who authored the work illustrated by Hiroyuki Takei? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:illustrator res:Hiroyuki_Takei . ?x prop:author ?uri . } | lcquad |
Who was the president at the time when both Carl Stokes and Joseph Stiglitz held a position in US political framework? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Carl_Stokes prop:president ?uri. res:Joseph_Stiglitz prop:president ?uri . } | lcquad |
List all the presidents of the school which had atleast one of the president as Queen Noor of Jordan ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:president <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x onto:president ?uri . ?x rdf:type onto:School} | lcquad |
Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman? | 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/The_Best_of_Both_Worlds_(song)> . ?uri prop:executiveProducer <http://dbpedia.org/resource/Ste... | lcquad |
What are the tenants of Mercedes-Benz Superdome? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> onto:tenant ?uri } | lcquad |
What is the birth city of trainer of Leallah? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Leallah prop:trainer ?x . ?x prop:birthPlace ?uri . } | lcquad |
What are some TV shows similar to the one produced by Susie Liggat? | 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:producer <http://dbpedia.org/resource/Susie_Liggat> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
Which television show is based in Massachusetts and has opening theme as "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:openingTheme <http://dbpedia.org/resource/Where_Everybody_Knows_Your_Name> . ?uri onto:location <http://dbpedia.org/resource/Massachusetts> . ?uri rdf:type onto:TelevisionShow} | lcquad |
Name the software which has been developed by John Fanning ? | 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/John_Fanning_(businessman)> . ?uri rdf:type onto:Software} | lcquad |
What is the mouth mountain of Current River (Missouri) ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Current_River_(Missouri)> onto:mouthMountain ?uri } | lcquad |
Who has canonized someone who's a doctor of the church? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:titles res:Doctor_of_the_Church . ?x onto:canonizedBy ?uri . } | lcquad |
was the first national bank and trust building architectured by Chicago? | PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> onto:architecturalStyle <http://dbpedia.org/resource/Chicago> } | lcquad |
Did Tupac write the lyrics of Holler If Ya Hear Me? | PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { <http://dbpedia.org/resource/Holler_If_Ya_Hear_Me_(musical)> prop:lyrics <http://dbpedia.org/resource/Tupac_Shakur> } | lcquad |
Where is the tombstone of the parliament members who served with James Roberts as the Vice President, US? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident <http://dbpedia.org/resource/James_Roberts_(trade_unionist)> . ?x onto:restingPlace ?uri . ?x rdf:type onto:MemberOfParliament} | lcquad |
What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ? | 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/Smerinthus_saliceti> onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Entomologist} | lcquad |
Where is the ground of the soccer club, which has Alan Kusov as a team member ? | 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/Alan_Kusov__11> onto:team ?x . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClub} | lcquad |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.