question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Where is the county seat of King County, Washington? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> onto:countySeat ?uri } | julipc-p(huggingface) |
What are the houses of legislature in the political leader's seat of Medininagar? | 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/Medininagar> prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature} | julipc-p(huggingface) |
Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople <http://dbpedia.org/resource/Dennis_Muilenburg> . ?uri prop:products <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . } | julipc-p(huggingface) |
How many people work at the FBI? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:occupation <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . } | julipc-p(huggingface) |
How many people have been trained in an institute located in 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 COUNT(?uri) WHERE { ?x prop:city <http://dbpedia.org/resource/California> . ?uri prop:training ?x . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
Where is the tomb of son of Bruce Lee? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Bruce_Lee . ?x onto:restingPlace ?uri . } | julipc-p(huggingface) |
What are some famous companies founded in the US? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:Company} | julipc-p(huggingface) |
Name the common former team of Marv mcFadden and Carlos Emmons ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marv_McFadden> prop:pastteams ?uri. <http://dbpedia.org/resource/Carlos_Emmons_(American_football)> onto:formerTeam ?uri} | julipc-p(huggingface) |
Who were fighting the war where the QF Hotchkiss was used? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict} | julipc-p(huggingface) |
Give me a count of movies whose film editor is Anthony Harvey? | 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:editing <http://dbpedia.org/resource/Anthony_Harvey> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
How many people are buried in Arlington National Cemetery? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeofburial <http://dbpedia.org/resource/Arlington_National_Cemetery> . } | julipc-p(huggingface) |
What are some people working for the New York Post? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:employer <http://dbpedia.org/resource/New_York_Post> . ?uri rdf:type onto:Person} | julipc-p(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 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} | julipc-p(huggingface) |
Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives? | 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:predecessor <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri prop:office <http://dbpedia.org/resource/Massachusetts_House_of_Repres... | julipc-p(huggingface) |
In which city is the sister station of WCSE-LP located ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> prop:sisterStations ?x . ?x prop:city ?uri . } | julipc-p(huggingface) |
What are some devices whose manufacturers are in taiwan? | 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:locationCountry <http://dbpedia.org/resource/Taiwan> . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device} | julipc-p(huggingface) |
Which military commander fought his battle at Fort Gadsen? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:battle <http://dbpedia.org/resource/Fort_Gadsden> . ?uri rdf:type onto:OfficeHolder} | julipc-p(huggingface) |
Which spanish novel was published by Francisco de Robles? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:publisher res:Francisco_de_Robles } | julipc-p(huggingface) |
What are some bands originating in London? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:hometown <http://dbpedia.org/resource/London> . ?uri rdf:type onto:Band} | julipc-p(huggingface) |
Which educational institution has Kaplan, Inc as it's affiliation? | 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:affiliations <http://dbpedia.org/resource/Kaplan,_Inc.> . ?uri rdf:type onto:EducationalInstitution} | julipc-p(huggingface) |
Where did john o conner study? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O'Connor_(archbishop_of_New_York)> onto:almaMater ?uri } | julipc-p(huggingface) |
List the producers who produced movies starring Michael Jackson. | 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/Michael_Jackson> . ?x prop:producer ?uri . ?x rdf:type onto:Film} | julipc-p(huggingface) |
List the name of the soccer clubs whose chairman is Joan Laporta. | 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:chairman <http://dbpedia.org/resource/Joan_Laporta> . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub} | julipc-p(huggingface) |
Name the major shrine of Bogumilus? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Bogumilus onto:majorShrine ?uri } | julipc-p(huggingface) |
What are the other launch site of the rockets which also have been launched from Cape Canaveral Air Force Station Launch Complex 5 ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:launchSite <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station_Launch_Complex_5> . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket} | julipc-p(huggingface) |
Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:related <http://dbpedia.org/resource/Babylon_5:_The_Lost_Tales> . ?uri onto:network <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri rdf:type onto:TelevisionSh... | julipc-p(huggingface) |
Who is the person whose alma mater is Harvard-Westlake School? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:almaMater <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
How many different religions have economists followed? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession <http://dbpedia.org/resource/Economist> . ?x onto:religion ?uri . } | julipc-p(huggingface) |
Which royalty's spouse is Ptolemy XIV of Egypt? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:spouse <http://dbpedia.org/resource/Ptolemy_XIV_of_Egypt> . ?uri rdf:type onto:Royalty} | julipc-p(huggingface) |
What artists are associated with the members of the Catalin Maruta? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Cătălin_Măruță . ?x onto:associatedMusicalArtist ?uri . } | julipc-p(huggingface) |
In which city are buildings by Solon Spencer Beman found? | 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:architect <http://dbpedia.org/resource/Solon_Spencer_Beman> . ?x prop:locationTown ?uri . ?x rdf:type onto:Building} | julipc-p(huggingface) |
Danny Felice, the Gibraltarian guitarist is from which city? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Danny_Felice onto:hometown ?uri } | julipc-p(huggingface) |
Name the tenants of O.co Coliseum ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:O.co_Coliseum onto:tenant ?uri } | julipc-p(huggingface) |
Name the rivers originating from an English speaking nation? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/English_language> . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River} | julipc-p(huggingface) |
Count the total awards won by the writer who has won Goethe Prize ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards <http://dbpedia.org/resource/Goethe_Prize> . ?x prop:awards ?uri } | julipc-p(huggingface) |
In how many nations can I find people related to the feminist movement? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:movement <http://dbpedia.org/resource/Feminism> . ?x onto:nationality ?uri . } | julipc-p(huggingface) |
What team had the debut of Marv Throneberry and Curt Coleman? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Marv_Throneberry prop:debutteam ?uri. res:Curt_Coleman onto:debutTeam ?uri} | julipc-p(huggingface) |
Name the sports played by PATTS College of Aeronautics? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri } | julipc-p(huggingface) |
Which home town of Cline Buckens is the place of Death of Richard heron ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri. res:Richard_Heron prop:placeOfDeath ?uri} | julipc-p(huggingface) |
Who wrote the musical based on Mary Poppins? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:basedOn <http://dbpedia.org/resource/Mary_Poppins> . ?x onto:author ?uri . ?x rdf:type onto:Musical} | julipc-p(huggingface) |
With whom is Heinz Kokott a relative to who also served Nazi Army? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Heinz_Kokott onto:relation ?uri } | julipc-p(huggingface) |
Who is the former partner of the figure skater which was the former partner of Brynn Carman ? | 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/Brynn_Carman> onto:formerPartner ?x . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater} | julipc-p(huggingface) |
Name the company which produces Marionette and has key person as Edwin catmull ? | 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:products <http://dbpedia.org/resource/Marionette_(software)> . ?uri prop:keyPeople <http://dbpedia.org/resource/Edwin_Catmull> . ?uri rd... | julipc-p(huggingface) |
Paul Morphy compiled journals of which field? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:editor res:Paul_Morphy . ?x prop:discipline ?uri . } | julipc-p(huggingface) |
Name the person whose relation is Dee Dee Warwick? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:relation <http://dbpedia.org/resource/Dee_Dee_Warwick> . ?uri rdf:type onto:Person} | julipc-p(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 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} | julipc-p(huggingface) |
In which region was political figure Wayne Allard elected? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Wayne_Allard onto:region ?uri } | julipc-p(huggingface) |
What awards have the narrator of the Cries and Whispers won? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Cries_and_Whispers onto:narrator ?x . ?x prop:awards ?uri . } | julipc-p(huggingface) |
How many ships belong to states which has Unitary as government type ? | 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:governmentType <http://dbpedia.org/resource/Unitary_state> . ?uri onto:country ?x . ?uri rdf:type onto:Ship} | julipc-p(huggingface) |
Who designed Oddamavadi Bridge? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Oddamavadi_Bridge prop:designer ?uri } | julipc-p(huggingface) |
Count all the band members who are in Bands which have signed up with Entertainment One Music? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label <http://dbpedia.org/resource/Entertainment_One_Music> . ?x onto:bandMember ?uri . } | julipc-p(huggingface) |
What are the television shows whose company is European Broadcasting Union? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:company <http://dbpedia.org/resource/European_Broadcasting_Union> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Who are the founders of Iskra ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Iskra onto:foundedBy ?uri } | julipc-p(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 } | julipc-p(huggingface) |
Graduates of Somerville College have been in how many political parties? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x onto:party ?uri . } | julipc-p(huggingface) |
List all the developers of the Oddworld series? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:series res:Oddworld . ?x onto:developer ?uri . } | julipc-p(huggingface) |
Which county seats are in the district where I can find the Hylebos Creek? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Hylebos_Creek onto:district ?x . ?x onto:countySeat ?uri . } | julipc-p(huggingface) |
Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ? | 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:currentteam <http://dbpedia.org/resource/Michigan_Wolverines> . ?uri onto:formerTeam <http://dbpedia.org/resource/1998_Baltimore_Ravens_... | julipc-p(huggingface) |
Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist ? | 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:distributor <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri prop:artist <http://dbpedia.org/resource/Christopher_Franke> . ... | julipc-p(huggingface) |
Give me a count of all the producers of all the movies whose music was done by James Horner? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music <http://dbpedia.org/resource/James_Horner> . ?x prop:producer ?uri . } | julipc-p(huggingface) |
List the notable work of David Isaacs (writer)? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> onto:notableWork ?uri } | julipc-p(huggingface) |
What is the province of Egypt Nanotechnology Center ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Egypt_Nanotechnology_Center prop:province ?uri } | julipc-p(huggingface) |
Give me the number of home stadiums of teams managed by John Spencer. | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager <http://dbpedia.org/resource/John_Spencer_(Scottish_footballer)> . ?x onto:homeStadium ?uri . } | julipc-p(huggingface) |
How many people are buried in the Winchester Cathedral? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace <http://dbpedia.org/resource/Winchester_Cathedral> . } | julipc-p(huggingface) |
Name the origins of the river with Quich Department as one of the origin ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:origin res:Quiché_Department . ?x onto:origin ?uri . } | julipc-p(huggingface) |
Who wrote a rose for emily? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:notableWork <http://dbpedia.org/resource/A_Rose_for_Emily> . ?uri rdf:type onto:Writer} | julipc-p(huggingface) |
What ethnicity do people in British Columbia belong to? | 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:residence <http://dbpedia.org/resource/British_Columbia> . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
Which motion picture stories were edited by Ishir Honda? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:writer <http://dbpedia.org/resource/Ishirō_Honda> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Which tv series have a score composed by judy hard angelo? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:composer <http://dbpedia.org/resource/Judy_Hart_Angelo> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
For which other teams have the past Boston Bruins members played? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:formerTeam res:Boston_Bruins . ?x prop:playedFor ?uri . } | julipc-p(huggingface) |
List the Swedish newspaper headquarted in Stockholm ? | 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:language <http://dbpedia.org/resource/Swedish_language> . ?uri prop:headquarters <http://dbpedia.org/resource/Stockholm> . ?uri rdf:type... | julipc-p(huggingface) |
Those seasons which have been played in Fort Lauderdale Florida now host their games where? | 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:stadium <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason} | julipc-p(huggingface) |
Where is the origin of Filbert's Old Time Root Beer ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Filbert's_Old_Time_Root_Beer> onto:origin ?uri } | julipc-p(huggingface) |
Give me all the alma mater of the relatives of Samuek Moreno Rojas ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Samuel_Moreno_Rojas onto:relation ?x . ?x prop:almaMater ?uri . } | julipc-p(huggingface) |
Which magazine's editor's official residence is Playboy Mansion? | 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:residence <http://dbpedia.org/resource/Playboy_Mansion> . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine} | julipc-p(huggingface) |
To which destinations does Air 2000 fly? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Air_2000 prop:destinations ?uri } | julipc-p(huggingface) |
What is the political party to which Purnima Banerjee is a member of? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Robert_Nutting onto:knownFor ?uri } | julipc-p(huggingface) |
To which political party does the successor of Radhabinod Koijam belong? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Radhabinod_Koijam prop:successor ?x . ?x prop:party ?uri . } | julipc-p(huggingface) |
What is the ethnicity of Linda Hogan ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri } | julipc-p(huggingface) |
Name the mammals which are primate and belongs to family of ape ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:order <http://dbpedia.org/resource/Primate> . ?uri onto:family <http://dbpedia.org/resource/Ape> . ?uri rdf:type onto:Mammal} | julipc-p(huggingface) |
Who did the person whose predecessor is Arthur Slaght, play for? | 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/Arthur_Slaght> . ?x prop:playedFor ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
To what did the parliament member swore her oath to, whose has sons is Lohan Ratwatte? | 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:child <http://dbpedia.org/resource/Lohan_Ratwatte> . ?x prop:allegiance ?uri . ?x rdf:type onto:MemberOfParliament} | julipc-p(huggingface) |
What are the awards won by the producer of Elizabeth: The Golden Age? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elizabeth:_The_Golden_Age_(soundtrack)> prop:producer ?x . ?x prop:awards ?uri . } | julipc-p(huggingface) |
What is the hometown of the volleyball player whose club is VC Lokomotiv Novosibirsk ? | 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:club <http://dbpedia.org/resource/VC_Lokomotiv_Novosibirsk> . ?x prop:hometown ?uri . ?x rdf:type onto:VolleyballPlayer} | julipc-p(huggingface) |
Who owns the bridge which crosses the Orange Line of MBTA? | 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:crosses <http://dbpedia.org/resource/Orange_Line_(MBTA)> . ?x prop:owner ?uri . ?x rdf:type onto:Bridge} | julipc-p(huggingface) |
Through which label did Mel Brooks produce his 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 { ?x prop:producer <http://dbpedia.org/resource/Mel_Brooks> . ?x prop:label ?uri . ?x rdf:type onto:Film} | julipc-p(huggingface) |
Count the number of judges who've come on CTV network shows. | 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 . } | julipc-p(huggingface) |
Name the musical artists whose label is given by Kobalt Label Services? | 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:label <http://dbpedia.org/resource/Kobalt_Label_Services> . ?uri rdf:type onto:MusicalArtist} | julipc-p(huggingface) |
Enumerate all the first teams of the GPs which were held in Watkins Glen, NY? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location <http://dbpedia.org/resource/Watkins_Glen,_New_York> . ?x prop:firstTeam ?uri . } | julipc-p(huggingface) |
Which operator of ganz UV is also the nationality of the Gza Horvth ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Géza_Horváth onto:nationality ?uri} | julipc-p(huggingface) |
What is the death place of the Abiye Abebe and is the birthplace of the Amsale Aberra? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Abiye_Abebe prop:placeOfDeath ?uri. res:Amsale_Aberra onto:birthPlace ?uri} | julipc-p(huggingface) |
Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Nikos_Pateras onto:residence ?uri} | julipc-p(huggingface) |
Give me a count of movies whose producer is Larry J. Franco? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer <http://dbpedia.org/resource/Larry_J._Franco> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Which city near Nihoa is the place of death of jim Brady ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> prop:nearestCity ?uri. <http://dbpedia.org/resource/Jim_Brady_(quarterback)> onto:deathPlace ?uri} | julipc-p(huggingface) |
Journals of how many fields can be found in US? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country <http://dbpedia.org/resource/United_States> . ?x prop:discipline ?uri . } | julipc-p(huggingface) |
How many different genres of games can I find which are compatible with the Commodore 64? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform <http://dbpedia.org/resource/Commodore_64> . ?x prop:genre ?uri . } | julipc-p(huggingface) |
In which wars has Steven Palazzo fought? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Steven_Palazzo prop:battles ?uri } | julipc-p(huggingface) |
Which fields' academic journals are found in the US? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:country res:United_States . ?x prop:discipline ?uri . } | julipc-p(huggingface) |
Mike Shinoda is in which band? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mike_Shinoda } | julipc-p(huggingface) |
What are the television shows whose voices is given by Mona Marshall? | 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:voices <http://dbpedia.org/resource/Mona_Marshall> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.