question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Victor_Hope,_2nd_Marquess_of_Linlithgow> prop:primeminister ?uri } | Orange(huggingface) |
In how many countries are people born who play cricket? | 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:occupation <http://dbpedia.org/resource/Cricket> . ?x onto:stateOfOrigin ?uri . ?uri rdf:type onto:Country} | Orange(huggingface) |
Give me a count of mammals which have their order as Primate? | 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 {?uri onto:order <http://dbpedia.org/resource/Primate> . ?uri rdf:type onto:Mammal} | Orange(huggingface) |
Give me a count of movies whose music composer is Bernard Herrmann? | 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 {?uri onto:musicComposer <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri rdf:type onto:Film} | Orange(huggingface) |
What was the book that lead to Sagan's Cosmos, about? | 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:subsequentWork <http://dbpedia.org/resource/Cosmos_(Carl_Sagan_book)> . ?x prop:subject ?uri .... | Orange(huggingface) |
Which hockey team is coached by mike babcock? | 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:headCoach <http://dbpedia.org/resource/Mike_Babcock> . ?uri rdf:type onto:HockeyTeam} | Orange(huggingface) |
List the Sci-fi TV shows with theme music given by Ron Grainer? | 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:genre <http://dbpedia.org/resource/Science_fiction> . ?uri prop:themeMusicComposer <http://db... | Orange(huggingface) |
In what tv shows did Jason Carter act? | 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:starring <http://dbpedia.org/resource/Jason_Carter_(actor)> . ?uri rdf:type onto:TelevisionShow} | Orange(huggingface) |
Where is the rival school of Somerset Berkeley Regional High school? | 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:rival <http://dbpedia.org/resource/Somerset_Berkley_Regional_High_School> . ?x onto:region ?uri . ?x rdf:type onto:School} | Orange(huggingface) |
Through which counties does the road go which starts at the Port Klang? | 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:routeStart <http://dbpedia.org/resource/Port_Klang> . ?x onto:county ?uri . ?x rdf:type onto:Road} | Orange(huggingface) |
What awards are won by the screenwriter of Lucky You? | 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/Lucky_You_(film)> prop:screenplay ?x . ?x onto:award ?uri . } | Orange(huggingface) |
How many kings and queens have died in the Arabian Peninsula? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:deathPlace <http://dbpedia.org/resource/Arabian_Peninsula> . } | Orange(huggingface) |
What team has players born in Dominican Republic? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace res:Dominican_Republic . ?x onto:team ?uri . } | Orange(huggingface) |
Does the hudson river flow into the lower manhattan? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Hudson_River onto:mouthMountain res:Lower_Manhattan } | Orange(huggingface) |
Which country were the people from who became famous for the Ramon Mangsaysay Award? | 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:knownFor <http://dbpedia.org/resource/Ramon_Magsaysay_Award> . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:Person} | Orange(huggingface) |
Who is the relative of Jim Farley? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Farley_(businessman)> prop:relatives ?uri } | Orange(huggingface) |
List the starring of the movies whose label is T-Series ? | 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:label <http://dbpedia.org/resource/T-Series> . ?x prop:starring ?uri . ?x rdf:type onto:Film} | Orange(huggingface) |
Name a person who works in Open Society Foundation and has wife named Susan Weber Soros ? | 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:employer <http://dbpedia.org/resource/Open_Society_Foundations> . ?uri prop:spouse <http://db... | Orange(huggingface) |
Which team's players have played in the national hockey league? | 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:league <http://dbpedia.org/resource/National_Hockey_League> . ?x onto:team ?uri . ?x rdf:type ... | Orange(huggingface) |
Who trained the wrestlers who are billed in Wisconsin? | 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:billed <http://dbpedia.org/resource/Wisconsin> . ?x onto:trainer ?uri . ?x rdf:type onto:Wrestler} | Orange(huggingface) |
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 . } | Orange(huggingface) |
Name the common architecture of the Grand Serail of Aleppo and Shaheed Minar, Kolkata ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Grand_Serail_of_Aleppo> onto:architecturalStyle ?uri. <http://dbpedia.org/resource/Shaheed_Minar,_Kolkata> onto:architecturalStyle ?uri . } | Orange(huggingface) |
Was Let it Be written by Ringo Starr? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Let_It_Be_(musical)> onto:musicBy <http://dbpedia.org/resource/Ringo_Starr> } | Orange(huggingface) |
What are shows whose theme music composer's home town is New York? | 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:hometown <http://dbpedia.org/resource/New_York> . ?uri prop:themeMusicComposer ?x . ?uri rdf:t... | Orange(huggingface) |
List the birthplace of the medicians who studied in Harvard. | 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:institution <http://dbpedia.org/resource/Harvard_Medical_School> . ?x onto:birthPlace ?uri . ?x rdf:type onto:Medician} | Orange(huggingface) |
Who acted in the work written by Colin Brake? | 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:writer <http://dbpedia.org/resource/Colin_Brake> . ?x prop:starring ?uri . ?x rdf:type onto:Wo... | Orange(huggingface) |
How many mountain ranges are located in the Canton of Fribourg? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea <http://dbpedia.org/resource/Canton_of_Fribourg> . ?x onto:mountainRange ?uri . } | Orange(huggingface) |
What are the airlines whose hub is San Francisco International Airport? | 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:hubs <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri rdf:type onto:A... | Orange(huggingface) |
What is the predecessor of the automobile which is the related of Cadillac Fleetwood? | 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/Cadillac_Fleetwood> prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:t... | Orange(huggingface) |
What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Christopher_DÃaz_Figueroa prop:residence ?uri. res:Cruce_a_Nado_Internacional onto:country ?uri} | Orange(huggingface) |
Count everyone who studied at an institute which are in Suburbs? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus <http://dbpedia.org/resource/Suburb> . ?uri prop:education ?x . } | Orange(huggingface) |
List the awards won by the cinematographer of Mickey's Mellerdrammer? | 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/Mickey's_Mellerdrammer> prop:cinematography ?x . ?x onto:award ?uri . } | Orange(huggingface) |
Who is the player who plays for the team that has the Michigan Stadium? | 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:stadium <http://dbpedia.org/resource/Michigan_Stadium> . ?uri prop:currentteam ?x . ?uri rdf:t... | Orange(huggingface) |
What is the television show whose sculptor is C. E. Webber and composed by Murray Gold? | 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:creator <http://dbpedia.org/resource/C._E._Webber> . ?uri onto:composer <http://dbpedia.org/resource/Murray_Gold> . ?uri rdf:type onto:Te... | Orange(huggingface) |
What is the birthplace of the Ferrel Harris which is also resting palce of Green Wix Unthank? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri. res:Green_Wix_Unthank onto:restingPlace ?uri} | Orange(huggingface) |
Which battles were fought under the president when Chung Won Shik was the prime minister? | 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:primeminister <http://dbpedia.org/resource/Chung_Won-shik> . ?x prop:battles ?uri . ?x rdf:typ... | Orange(huggingface) |
Who are the golf players whose college is Arizona State Sun Devils? | 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:college <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri rdf:type onto:GolfPlayer} | Orange(huggingface) |
How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:training <http://dbpedia.org/resource/University_of_Melbourne_Faculty_of_VCA_and_MCM> . ?x onto:award ?uri . } | Orange(huggingface) |
Name the nearest city to the historic place which has Englewood, Colorado as one of them ? | 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:nearestCity <http://dbpedia.org/resource/Englewood,_Colorado> . ?x onto:nearestCity ?uri . ?x ... | Orange(huggingface) |
List the people who were the first one to climb a mountain in California? | 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:locatedInArea <http://dbpedia.org/resource/California> . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain} | Orange(huggingface) |
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 res: <http://dbpedia.org/resource/>
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:Televis... | Orange(huggingface) |
Is Nikolai Morozov the former coach of Stanislav Morozov? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Stanislav_Morozov> onto:formerCoach <http://dbpedia.org/resource/Nikolai_Morozov_(figure_skater)> } | Orange(huggingface) |
Which writer of the Snaman is also the writer of Neverwher ? | 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_Sandman_(Vertigo)> prop:writers ?uri. <http://dbpedia.org/resource/Neverwhere_(radio_play)> onto:writer ?uri} | Orange(huggingface) |
Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)? | 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/Theme_Time_Radio_Hour> prop:creator ?uri. <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> onto:musicBy ?uri} | Orange(huggingface) |
name the races where bobby beasley took part? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Bobby_Beasley onto:race ?uri } | Orange(huggingface) |
Where is Oskar Blues located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Oskar_Blues_Brewery prop:location ?uri } | Orange(huggingface) |
What is the city nearest to the historic place whose architect is Joseph Dion? | 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:architect <http://dbpedia.org/resource/Joseph_Dion> . ?x onto:nearestCity ?uri . ?x rdf:type o... | Orange(huggingface) |
Name the scientist whose supervisor also supervised Mary Ainsworth? | 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:doctoralStudents <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri prop:doctoralAdvisor ?x .... | Orange(huggingface) |
Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television? | 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:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri onto:company <http://dbpedia.org/resource/DreamWorks_Television> . ?uri ... | Orange(huggingface) |
List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria? | 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:order <http://dbpedia.org/resource/Bacillales> . ?uri prop:domain <http://dbpedia.org/resourc... | Orange(huggingface) |
List the shrines of the saint whose one of the shrine is Ponza? | 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:majorShrine <http://dbpedia.org/resource/Poznań> . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint} | Orange(huggingface) |
Name the people whose residence is Beverly Hills, California? | 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:residence <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri rdf:type onto:Person} | Orange(huggingface) |
Who is the opponent of United States House of Representatives elections in Ohio, 2010 ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_House_of_Representatives_elections_in_Ohio,_2010> prop:opponent ?uri } | Orange(huggingface) |
Where did the athlete start his career, who did his highschool in Red Lion Area School District? | 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:highschool <http://dbpedia.org/resource/Red_Lion_Area_School_District> . ?x prop:debutteam ?ur... | Orange(huggingface) |
In how many different places are Brown haired models living? | 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:hairColor <http://dbpedia.org/resource/Brown_hair> . ?x onto:residence ?uri . } | Orange(huggingface) |
Name the military conflict whose commander was Colin Powell and took place in israel ? | 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:commander <http://dbpedia.org/resource/Colin_Powell> . ?uri onto:place <http://dbpedia.org/resource/Israel> . ?uri rdf:type onto:Military... | Orange(huggingface) |
What are some books whose cover illustration is designed by Marshall Arisman? | 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:coverArtist <http://dbpedia.org/resource/Marshall_Arisman> . ?uri rdf:type onto:Book} | Orange(huggingface) |
What is the fictional character which has Clan McDuck and Ludwig Von Draken as relatives? | 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:relatives <http://dbpedia.org/resource/Clan_McDuck> . ?uri prop:relatives <http://dbpedia.or... | Orange(huggingface) |
Who is the distributer of Rev ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rev_(drink)> prop:distributor ?uri } | Orange(huggingface) |
List the series of the books whose author is K. W. Jeter. | 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:author <http://dbpedia.org/resource/K._W._Jeter> . ?x onto:series ?uri . ?x rdf:type onto:Book... | Orange(huggingface) |
Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ? | PREFIX res: <http://dbpedia.org/resource/>
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} | Orange(huggingface) |
List all the operators of the train who operates in Budapest ? | 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:operator <http://dbpedia.org/resource/Budapest> . ?x onto:operator ?uri . ?x rdf:type onto:Train} | Orange(huggingface) |
What is the leader name of the settlements whose governing body is Municipal council? | 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:governingBody <http://dbpedia.org/resource/Municipal_council> . ?x onto:leaderName ?uri . ?x rdf:type onto:Settlement} | Orange(huggingface) |
Give me some series whose network's owning company is Warner Bros. Television? | 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:owningCompany <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow} | Orange(huggingface) |
What are the towns who have Thesaban system? | 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:settlementType <http://dbpedia.org/resource/Thesaban> . ?uri rdf:type onto:Town} | Orange(huggingface) |
Which political party of Arunachal Pradesh Legislative Assembly election, 2014 was the leader of Rishikesh ? | 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/Arunachal_Pradesh_Legislative_Assembly_election,_2014> prop:party ?uri. <http://dbpedia.org/resource/Rishikesh> onto:leaderName ?ur... | Orange(huggingface) |
What is used as money for French Southern and Antarctic Lands is also the product of the Karafarin Bank ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:French_Southern_and_Antarctic_Lands onto:currency ?uri. res:Karafarin_Bank onto:product ?uri} | Orange(huggingface) |
Where did chancellor served by Rudolf Kirchschlger die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Rudolf_Kirchschläger prop:chancellor ?x . ?x onto:deathPlace ?uri . } | Orange(huggingface) |
Who produced the TV shows for Fremantle Media? | 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:company <http://dbpedia.org/resource/FremantleMedia> . ?x onto:producer ?uri . ?x rdf:type ont... | Orange(huggingface) |
Which company's cars are assembled in Iran? | 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:assembly <http://dbpedia.org/resource/Iran> . ?x prop:parentCompany ?uri . ?x rdf:type onto:Au... | Orange(huggingface) |
Whose mayors are affiliated with Christen-Democratisch en Vlaams? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:affiliation <http://dbpedia.org/resource/Christen-Democratisch_en_Vlaams> . ?uri onto:leaderName ?x . } | Orange(huggingface) |
What fictional characters are American Pekin duck species? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:species res:American_Pekin_duck } | Orange(huggingface) |
Give me the name of the organization hqed at Chaeng Watthana Govt Complex? | 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:headquarter <http://dbpedia.org/resource/Chaeng_Watthana_Government_Complex> . ?x prop:agencyN... | Orange(huggingface) |
How many awards have graduates from the University of Queensland earned? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/University_of_Queensland> . ?x prop:awards ?uri . } | Orange(huggingface) |
What are the movies whose distributor's headquarters is New York? | 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:headquarters <http://dbpedia.org/resource/New_York> . ?uri prop:distributor ?x . ?uri rdf:type... | Orange(huggingface) |
To which families does the Koolakamba belong? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Koolakamba onto:family ?uri } | Orange(huggingface) |
Which uni did Joshua A. Siegel attend ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Joshua_A._Siegel prop:education ?uri } | Orange(huggingface) |
Who owns the tunnels operated by the Massachusetts Department of Transportation? | 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:operatedBy <http://dbpedia.org/resource/Massachusetts_Department_of_Transportation> . ?x prop:... | Orange(huggingface) |
Which new Mexico based company produces Surface ? | 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:foundation <http://dbpedia.org/resource/New_Mexico> . ?uri onto:product <http://dbpedia.org/r... | Orange(huggingface) |
Count the number of judges who've come on CTV network shows. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network <http://dbpedia.org/resource/CTV_Television_Network> . ?x prop:judges ?uri . } | Orange(huggingface) |
What is the sea whose cities are Gdansk and Oulu? | 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:cities <http://dbpedia.org/resource/Gdańsk> . ?uri prop:cities <http://dbpedia.org/resource... | Orange(huggingface) |
How many cities are around the sea which flows into the Atlantic? | 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 COUNT(?uri) WHERE { ?x onto:inflow <http://dbpedia.org/resource/Atlantic_Ocean> . ?x prop:cities ?uri . ?uri rdf:ty... | Orange(huggingface) |
Count the number of musical work which were sold by Sony Music? | 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 COUNT(?uri) WHERE { ?x prop:label <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri prop:music ?x . ?ur... | Orange(huggingface) |
Who holds stock in the railway lines ending in Washington DC? | 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:routeEnd <http://dbpedia.org/resource/Union_Station_(Washington,_D.C.)> . ?x prop:owner ?uri .... | Orange(huggingface) |
Count the movies directed by Tim Burton and music composer Danny Elfman ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music <http://dbpedia.org/resource/Danny_Elfman> . ?uri prop:director <http://dbpedia.org/resource/Tim_Burton> } | Orange(huggingface) |
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 res: <http://dbpedia.org/resource/>
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:sourceL... | Orange(huggingface) |
Which first driver of the European Grand Prix 1993 has also finished first in the 1985 Portuguese Grand Prix? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri. res:1985_Portuguese_Grand_Prix prop:firstDriver ?uri . } | Orange(huggingface) |
What is the debut team of the gridiron football player who coached the 1931 Staten Island Stapletons season ? | 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/1931_Staten_Island_Stapletons_season> onto:coach ?x . ?x prop:debutteam ?... | Orange(huggingface) |
Who is the producer of the song which is the previous work of He's a Liar ? | 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/He's_a_Liar> onto:previousWork ?x . ?x onto:producer ?uri . ?x rdf:type onto:Song} | Orange(huggingface) |
Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ? | 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_Skeleton_Dance> onto:animator ?uri. <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> prop:animator ?uri} | Orange(huggingface) |
What is the largest city of the country where P. Sathyanarayanan was born? | 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/P._Sathyanarayanan> prop:birthplace ?x . ?x onto:largestCity ?uri . ?x rd... | Orange(huggingface) |
Which television show's network is BBC HD and is related to Doctor Who Confidential? | 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:network <http://dbpedia.org/resource/BBC_HD> . ?uri onto:related <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri rdf:type on... | Orange(huggingface) |
Name the debut team of Dan Otero? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Dan_Otero onto:debutTeam ?uri } | Orange(huggingface) |
How many states does the Pioneer corporation operate in? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Pioneer_Corporation> prop:country ?uri . } | Orange(huggingface) |
For whom did Michael Springer palyed for which also had a former student named Donald Brooks? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri. res:Donald_Brooks prop:education ?uri} | Orange(huggingface) |
Where is the predecessor of john waldo from? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:successor res:John_B._Waldo . ?x prop:state ?uri . } | Orange(huggingface) |
Which countries have the members of Ukrainian ministry of internal affairs swore their oath? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:branch <http://dbpedia.org/resource/Ministry_of_Internal_Affairs_(Ukraine)> . ?x prop:allegiance ?uri . } | Orange(huggingface) |
How many races have the horses bred by Jacques Van't Hart participated in? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:breeder <http://dbpedia.org/resource/Jacques_Van't_Hart> . ?x prop:race ?uri . } | Orange(huggingface) |
How many different mascots are there of the NCAA teams? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?x prop:mascot ?uri . } | Orange(huggingface) |
Name the university whose teams have been managed by Albertin Montoya? | 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/Albertin_Montoya> prop:managerclubs ?x . ?x onto:university ?uri . ?x rdf... | Orange(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.