question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Where was Henri, Duke of Rohan laid to rest? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri,_Duke_of_Rohan> onto:placeOfBurial ?uri } | Orange(huggingface) |
What is the nationality of the David King-Wood and John Steed ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_King-Wood> prop:nationality ?uri. <http://dbpedia.org/resource/John_Steed> prop:nationality ?uri . } | Orange(huggingface) |
List the awards given to the race horses bred by Willis Sharpe Kilmer. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:breeder <http://dbpedia.org/resource/Willis_Sharpe_Kilmer> . ?x onto:honours ?uri . ?x rdf:type onto:RaceHorse} | Orange(huggingface) |
What are the regions in which the distributor of Secrets and Lies serves ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Secrets_and_Lies_(U.S._TV_series)> onto:distributor ?x . ?x onto:regionServed ?uri . } | Orange(huggingface) |
What is the ethnicity of Ted Falon? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ted_Failon onto:ethnicity ?uri } | Orange(huggingface) |
What novels belong to the genre of Utopian and dystopian fiction? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:literaryGenre res:Utopian_and_dystopian_fiction } | Orange(huggingface) |
In which state does the ambassador who is related with J Bennett Johnston live? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:J._Bennett_Johnston onto:relation ?x . ?x prop:state ?uri . } | Orange(huggingface) |
Who is the scientist whose doctoral student is Erich Bagge? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent <http://dbpedia.org/resource/Erich_Bagge> . ?uri rdf:type onto:Scientist} | Orange(huggingface) |
Who is the narrator of The Price of Beauty? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Price_of_Beauty onto:narrator ?uri } | Orange(huggingface) |
What is the alma mater of the senator who is the successor of Warren Magnuson ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Warren_Magnuson> prop:successor ?x . ?x prop:almaMater ?uri . ?x rdf:type... | Orange(huggingface) |
In which country does the publishing house exist which was cofounded by Panos Loannides? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:founder <http://dbpedia.org/resource/Panos_Ioannides> . ?x prop:country ?uri . ?x rdf:type ont... | Orange(huggingface) |
Enumerate the cars related to the ones assembled in Toluca? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly <http://dbpedia.org/resource/Toluca> . ?x prop:related ?uri . } | Orange(huggingface) |
Which animal is the mascot of the 1502nd Infantry Brigade (Ready Reserve) and Galatasaray Handball Team ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1502nd_Infantry_Brigade_(Ready_Reserve)> prop:mascot ?uri. <http://dbpedi... | Orange(huggingface) |
Who is known for the War of 1812 and Battle of the Thames? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:War_of_1812 . ?uri onto:knownFor res:Battle_of_the_Thames . } | Orange(huggingface) |
What has been founded in the state that Denton county, Texas is a part of? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:part <http://dbpedia.org/resource/Denton_County,_Texas> . ?uri onto:foundationPlace ?x . } | Orange(huggingface) |
Name the team Ramiro Pea played for, which was also the first team of Steve Ontiveros? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Ontiveros_(infielder)> prop:debutteam ?uri. <http://dbpedia.org/resource/Ramiro_Peña> onto:team ?uri} | Orange(huggingface) |
List all the members of the organization whose one of the members is Bangladesh ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:membership <http://dbpedia.org/resource/Bangladesh> . ?x prop:membership ?uri . ?x rdf:type on... | Orange(huggingface) |
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 res: <http://dbpedia.org/resource/>
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} | Orange(huggingface) |
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 res: <http://dbpedia.org/resource/>
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://db... | Orange(huggingface) |
How many awards have been given to Italians? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Italy> . ?x prop:awards ?uri . } | Orange(huggingface) |
Which current players once played for Toronto argonauts? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri rdf:type onto:AmericanFootballPlayer} | Orange(huggingface) |
Who is the developer of the software which is produced by Claris ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claris> prop:products ?x . ?x onto:developer ?uri . ?x rdf:type onto:Soft... | Orange(huggingface) |
Who has his resting place at Plymouth, Vermont and office at Massachusetts House of Representatives? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace <http://dbpedia.org/resource/Plymouth,_Vermont> . ?uri prop:office <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . ... | Orange(huggingface) |
How many labels sign up progressive rock artists? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:genre <http://dbpedia.org/resource/Progressive_rock> . ?x onto:recordLabel ?uri . } | Orange(huggingface) |
How many people currently play for the NYC FC? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub <http://dbpedia.org/resource/New_York_City_FC> . } | Orange(huggingface) |
Name presidents of the schools which have queen noor of Jordan as one of them ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
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} | Orange(huggingface) |
What is the birth place of the children of Miguel Garca Granados? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Miguel_GarcÃa_Granados prop:children ?x . ?x onto:birthPlace ?uri . } | Orange(huggingface) |
What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:1906–17_Stanford_rugby_teams prop:headcoach ?x . ?x onto:university ?uri . } | Orange(huggingface) |
Who composed the lyrics of Holler If Ya Hear Me ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Holler_If_Ya_Hear_Me_(musical)> prop:lyrics ?uri } | Orange(huggingface) |
Michael Deeley produce how many movies? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer <http://dbpedia.org/resource/Michael_Deeley> . } | Orange(huggingface) |
How many rivers start in an English speaking country? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/English_language> . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River} | Orange(huggingface) |
How many people used to play for Toronto Argonauts? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:formerTeam <http://dbpedia.org/resource/Toronto_Argonauts> . } | Orange(huggingface) |
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 res: <http://dbpedia.org/resource/>
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 ... | Orange(huggingface) |
What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:William_C._Cramer prop:placeOfBirth ?uri} | Orange(huggingface) |
What does the bridge go over, which is in Katima Mulilo? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea <http://dbpedia.org/resource/Katima_Mulilo> . ?x prop:crosses ?uri . ?x rdf:type... | Orange(huggingface) |
Which newspapers are owned by organizations located in Oslo? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:location res:Oslo . ?uri prop:owners ?x . } | Orange(huggingface) |
Who is venerated in Judaism and Islam? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:veneratedIn res:Judaism . ?uri onto:veneratedIn res:Islam . } | Orange(huggingface) |
What is the color of Xocolatlite ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Xocolatlite onto:colour ?uri } | Orange(huggingface) |
Who is the builder of the Stadium of Costa Rica women's national football team? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Costa_Rica_women's_national_football_team> onto:stadium ?x . ?x onto:builder ?uri . ?x rdf:type onto:Stadium} | Orange(huggingface) |
Name the billed states of the wrestlers who have also billed state Georgia? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
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 ... | Orange(huggingface) |
What are some employees of Uni of California, santa cruz? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:employer <http://dbpedia.org/resource/University_of_California,_Santa_Cruz> . } | Orange(huggingface) |
What awards have been given to people schooled in the Everton park state high? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:education <http://dbpedia.org/resource/Everton_Park_State_High_School> . ?x prop:awards ?uri .... | Orange(huggingface) |
Did Chant Mas originate in West Africa? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Chanté_mas onto:stylisticOrigin res:West_Africa } | Orange(huggingface) |
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 res: <http://dbpedia.org/resource/>
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://dbpedi... | Orange(huggingface) |
What band made The trial and One of these days song? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Trial_(song)> prop:artist ?uri. <http://dbpedia.org/resource/One_of_These_Days_(instrumental)> onto:musicalArtist ?uri . } | Orange(huggingface) |
Which military people served their allegiance to Union (American Civil War)? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:allegiance <http://dbpedia.org/resource/Union_(American_Civil_War)> . ?uri rdf:type onto:Mili... | Orange(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.