question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
What mammals fall into the biological family Canidae? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:family <http://dbpedia.org/resource/Canidae> . ?uri rdf:type onto:Mammal} | julipc-p(huggingface) |
what region is governed by Mario Olivero? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:leader res:Mario_Oliverio } | julipc-p(huggingface) |
Whihc party of the Mizoram Legislative Assembly is the government type of kumta ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Kumta onto:governmentType ?uri. res:Mizoram_Legislative_Assembly prop:party ?uri} | julipc-p(huggingface) |
What sports can be played in institutions in Bataan? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:province res:Bataan . ?x onto:sport ?uri . } | julipc-p(huggingface) |
What is the total number of regions served by the companies which also serves Australia? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed <http://dbpedia.org/resource/Australia> . ?x onto:regionServed ?uri } | julipc-p(huggingface) |
Which route junction of the Rhode Island Route 15 is the place of birth of the Michael Poulin? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri. res:Michael_Poulin prop:placeOfBirth ?uri} | julipc-p(huggingface) |
What is the birth city of the Salford City F.C players ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:team <http://dbpedia.org/resource/Salford_City_F.C.> . ?x onto:birthPlace ?uri . ?x rdf:type onto:SoccerPlayer} | julipc-p(huggingface) |
Who are the maintainers of the bridges which cross the pandaruan river? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:crosses <http://dbpedia.org/resource/Pandaruan_River> . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge} | julipc-p(huggingface) |
List the area of radio stations whose sister station is WBCQ-FM? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBCQ-FM> prop:sisterStations ?x . ?x prop:area ?uri . } | julipc-p(huggingface) |
Which school did Robbie Diack attend? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Robbie_Diack prop:school ?uri } | julipc-p(huggingface) |
List the alma mater of the congressmen who attended Nashville, Tennessee ? | 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:almaMater <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x onto:almaMater ?uri . ?x rdf:type onto:Congressman} | julipc-p(huggingface) |
What is the broadcast area of CFRX ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri } | julipc-p(huggingface) |
Who developed games based on the Cars 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:series <http://dbpedia.org/resource/Cars_(film)> . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame} | julipc-p(huggingface) |
What are the american football players whose former team's coach is Jason Maas? | 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:coach <http://dbpedia.org/resource/Jason_Maas> . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer} | julipc-p(huggingface) |
Which hub of Cascade Airways is also the resting place of Brandon Lee ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri. res:Brandon_Lee onto:restingPlace ?uri} | julipc-p(huggingface) |
How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x onto:manufacturer ?uri . } | julipc-p(huggingface) |
Name the agency of Election Commission of Thailand ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Election_Commission_of_Thailand prop:agencyName ?uri } | julipc-p(huggingface) |
In which country did the planes designed by Ursula Hanle originate? | 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:designer <http://dbpedia.org/resource/Ursula_Hänle> . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft} | julipc-p(huggingface) |
what are some units udner the US department of navy? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_the_Navy } | julipc-p(huggingface) |
Which destination of the Novair International Airways is also the predecessor of the Chevrolet Caprice? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri. res:Chevrolet_Caprice onto:predecessor ?uri} | julipc-p(huggingface) |
What did other artists associated with the Shirelles make? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand <http://dbpedia.org/resource/The_Shirelles> . ?x onto:occupation ?uri . ?x rdf:type onto:Artist} | julipc-p(huggingface) |
Which sitcoms are made by a company headquartered in NYC? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:headquarter <http://dbpedia.org/resource/New_York_City> . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Name the city of Duwamish River ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Duwamish_River onto:city ?uri } | julipc-p(huggingface) |
List the children of the parent of Marvin Bush. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Marvin_Bush onto:parent ?x . ?x prop:children ?uri . } | julipc-p(huggingface) |
List the awards received of the person whose child is Daine Disney Miller? | 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:children <http://dbpedia.org/resource/Diane_Disney_Miller> . ?x onto:award ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
In which country is the Baku puppet Theater located which is also the birth palce of Anar Salmanov ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Baku_Puppet_Theatre onto:locationCountry ?uri. res:Anar_Salmanov prop:placeOfBirth ?uri} | julipc-p(huggingface) |
List down all the cast members of Tony n' Tina's Wedding ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tony_n'_Tina's_Wedding> prop:starring ?uri } | julipc-p(huggingface) |
What is the airline company has its headquarters in Dublin Airport? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:headquarters res:Dublin_Airport } | julipc-p(huggingface) |
What was the result of Operation Autumn Clouds ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Operation_Autumn_Clouds prop:result ?uri } | julipc-p(huggingface) |
Where was the Temptation Waits recorded? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Temptation_Waits onto:recordedIn ?uri } | julipc-p(huggingface) |
Some movies whose screenplay is done by american born people? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:United_States . ?uri prop:screenplay ?x . } | julipc-p(huggingface) |
List the relatives of clay Aiken ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:relatives res:Clay_Aiken . } | julipc-p(huggingface) |
List the relatives of the children of Jon Voight ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jon_Voight prop:children ?x . ?x onto:relative ?uri . } | julipc-p(huggingface) |
What is the resting place of the children of Bruce Lee ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Bruce_Lee prop:children ?x . ?x onto:restingPlace ?uri . } | julipc-p(huggingface) |
List the colonel with branch as Militia ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:branch <http://dbpedia.org/resource/Militia> . ?uri prop:rank <http://dbpedia.org/resource/Colonel_(United_States)> . } | julipc-p(huggingface) |
List all areas served by the radio station serving South carolina ? | 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:area <http://dbpedia.org/resource/South_Carolina> . ?x prop:area ?uri . ?x rdf:type onto:RadioStation} | julipc-p(huggingface) |
Which TV show's theme was composed by a band in which Todd Huth used to perform? | 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:formerBandMember <http://dbpedia.org/resource/Todd_Huth> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
What is the state of origin of Abbas Jafri ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Abbas_Jafri onto:stateOfOrigin ?uri } | julipc-p(huggingface) |
which award has been won by Claudia Moro? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Claudia_Moro prop:title ?uri } | julipc-p(huggingface) |
What religion did the spouse of Richie Aprile follow? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Richie_Aprile prop:spouse ?x . ?x onto:religion ?uri . } | julipc-p(huggingface) |
Which river has its roots in Baikal Mountains? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Baikal_Mountains } | julipc-p(huggingface) |
What is the country whose leader was once Valentina Matviyenko? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:leader res:Valentina_Matviyenko . } | julipc-p(huggingface) |
Whose units are responsible for close air support? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:role res:Close_air_support . ?uri onto:militaryUnit ?x . } | julipc-p(huggingface) |
Which university has chancellor as Nicholas S. Zeppos? | 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:chancellor <http://dbpedia.org/resource/Nicholas_S._Zeppos> . ?uri rdf:type onto:University} | julipc-p(huggingface) |
Name the key people of the non-profit organisations whose one of the key person is Lesley-Anne knight ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople <http://dbpedia.org/resource/Lesley-Anne_Knight> . ?x prop:keyPeople ?uri . } | julipc-p(huggingface) |
What is the address of Federal Reserve Bank Building? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> prop:address ?uri } | julipc-p(huggingface) |
What are the kind of games one can play on windows? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform <http://dbpedia.org/resource/Microsoft_Windows> . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame} | julipc-p(huggingface) |
What is the location country of the bank whose successor is Mauritius Bank ? | 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:successor <http://dbpedia.org/resource/Mauritius_Bank> . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank} | julipc-p(huggingface) |
Which artists have co-starred with Kris Kristofferson? | 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:associatedActs <http://dbpedia.org/resource/Kris_Kristofferson> . ?uri rdf:type onto:Artist} | julipc-p(huggingface) |
List the software using C++ as programming language and licence is Software as a service? | 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:programmingLanguage <http://dbpedia.org/resource/C++> . ?uri onto:license <http://dbpedia.org/resource/Software_as_a_service> . ?uri rdf... | julipc-p(huggingface) |
Which are the major hubs of airline which operates the Menora Tunnel? | 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/Menora_Tunnel> prop:operator ?x . ?x prop:hubs ?uri . ?x rdf:type onto:Airline} | julipc-p(huggingface) |
Who are the writer of the singles whose music genre is Rhythm and blues ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:genre <http://dbpedia.org/resource/Rhythm_and_blues> . ?x onto:writer ?uri . ?x rdf:type onto:Single} | julipc-p(huggingface) |
Which country does the current team of Darren McNamara belong to? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Darren_McNamara prop:currentTeam ?x . ?x onto:locationCountry ?uri . } | julipc-p(huggingface) |
Name the mountain which belongs to Sierra Nevada range and is located in Inyo National Forest? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri onto:locatedInArea <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri rdf:type onto:Mountain} | julipc-p(huggingface) |
What are the awards won by the film editor of The Search? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> onto:editing ?x . ?x prop:awards ?uri . } | julipc-p(huggingface) |
Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> onto:servingRailwayLine ?uri. <http://dbpedia.org/resource/Nina_Vislova> prop:placeOfBirth ?uri} | julipc-p(huggingface) |
Give me some series related to the one which had Yasmin Paige in 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:starring <http://dbpedia.org/resource/Yasmin_Paige> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Which associate musical artist of Carolyn Dennis is also the composer of Motorpsycho Nitemare ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Carolyn_Dennis onto:associatedMusicalArtist ?uri. res:Motorpsycho_Nitemare prop:composer ?uri} | julipc-p(huggingface) |
Count the number of shows whose creators are Jerry Seinfeld and Larry David? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:creator <http://dbpedia.org/resource/Jerry_Seinfeld> . ?uri onto:creator <http://dbpedia.org/resource/Larry_David>} | julipc-p(huggingface) |
What is the state of the settlement, which is the sub assembly of Mohamedia, Tunisia ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mohamedia,_Tunisia> onto:isPartOf ?x . ?x onto:country ?uri . } | julipc-p(huggingface) |
Name the rivers in the hudson highlands state parts? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Hudson_Highlands_State_Park prop:river ?uri } | julipc-p(huggingface) |
How many TV shows have executive producer as Steven Moffat ? | 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:executiveProducer <http://dbpedia.org/resource/Steven_Moffat> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ? | 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:militaryUnit <http://dbpedia.org/resource/USS_Kittiwake_(ASR-13)> . ?uri prop:constituency <http://dbpedia.org/resource/Castro_District,... | julipc-p(huggingface) |
Which writer of the Snaman is also the writer of Neverwher ? | 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} | julipc-p(huggingface) |
How many relatives are there of veterans of operation Barbarossa? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle <http://dbpedia.org/resource/Operation_Barbarossa> . ?x onto:relation ?uri . } | julipc-p(huggingface) |
Which famous political figures are relatives to George Madison? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:George_Madison onto:relation ?uri } | julipc-p(huggingface) |
Which organisation has superintendent as Lieutenant general (United States)? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:superintendent <http://dbpedia.org/resource/Lieutenant_general_(United_States)> . ?uri rdf:type onto:Organisation} | julipc-p(huggingface) |
Who all have been in bands which have recorded their work in the Electric Lady 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/Electric_Lady_Studios> . ?uri prop:associatedActs ?x . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
Who did the associated act which is a Peter Frampton production ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Peter_Frampton . ?uri prop:associatedActs ?x . } | julipc-p(huggingface) |
List the shows whose company's successor is Amblin 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:successor <http://dbpedia.org/resource/Amblin_Television> . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
How many shows are made by the channel whose predecessor was the Comedy Channel? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:predecessor <http://dbpedia.org/resource/The_Comedy_Channel_(United_States)> . ?uri prop:network ?x . ?uri rdf:type onto:Televisio... | julipc-p(huggingface) |
List of people who were the first one to ascend a mountain in the Cathedral range? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange <http://dbpedia.org/resource/Cathedral_Range> . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain} | julipc-p(huggingface) |
Give me the mascot of the military unit in which Stewart Bovell served? | 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/Stewart_Bovell> onto:militaryBranch ?x . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit} | julipc-p(huggingface) |
In which wars did commanders born in Indochina fight? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Indochina> . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict} | julipc-p(huggingface) |
Who has written the mary poppins musical? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mary_Poppins_(musical)> onto:author ?uri } | julipc-p(huggingface) |
Which newspaper is owned by people living 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 . } | julipc-p(huggingface) |
Who made the engine whose predecessor is the SHO V6? | 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:predecessor <http://dbpedia.org/resource/Ford_SHO_V6_engine> . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine} | julipc-p(huggingface) |
For how many different teams have Ontarians been drafted ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth <http://dbpedia.org/resource/Ontario> . ?x onto:draftTeam ?uri . } | julipc-p(huggingface) |
Name the university of Alexandre Tichonov ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri } | julipc-p(huggingface) |
In which countries can i find broadcasted TV in southeast asia? | 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:broadcastArea <http://dbpedia.org/resource/Southeast_Asia> . ?x prop:country ?uri . ?x rdf:type onto:TelevisionStation} | julipc-p(huggingface) |
Over how many cities did the Bellaton MMA, Season 11 take place? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Bellator_MMA:_Season_Eleven> prop:city ?uri . } | julipc-p(huggingface) |
Whose academic advisor works at the St George's Hospital? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions <http://dbpedia.org/resource/St_George's_Hospital> . ?uri onto:academicAdvisor ?x . } | julipc-p(huggingface) |
Count the number of people who graduated from universities affiliated with the NCAA. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri prop:education ?x . ?uri rdf:type onto:Per... | julipc-p(huggingface) |
Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:battle res:Siege_of_Fort_Recovery . ?uri prop:governor res:Charles_Willing_Byrd . } | julipc-p(huggingface) |
How many characters were made by Paul Dini? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creators <http://dbpedia.org/resource/Paul_Dini> . } | julipc-p(huggingface) |
What are the name of the casualties affected by shooting rampage of Eric Harris and Dylan Klebold? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:deathCause <http://dbpedia.org/resource/Eric_Harris_and_Dylan_Klebold> . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
How many molluscas are there whose families are Buccinidae and Buccinoidea? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:family <http://dbpedia.org/resource/Buccinidae> . ?uri onto:family <http://dbpedia.org/resource/Buccinoidea>} | julipc-p(huggingface) |
List the newspapers which has headquarters 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:headquarters <http://dbpedia.org/resource/Stockholm> . ?uri rdf:type onto:Newspaper} | julipc-p(huggingface) |
List the relegion of tani University which is also the life stance of udit Raj ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ōtani_University prop:affiliation ?uri. res:Udit_Raj onto:religion ?uri} | julipc-p(huggingface) |
what are some players of England national football team? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam res:England_national_football_team } | julipc-p(huggingface) |
Which genre of books does the writer of The Many Hands write? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Many_Hands prop:author ?x . ?x onto:genre ?uri . } | julipc-p(huggingface) |
Where did Aghasalim Childagh die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Aghasalim_Childagh prop:deathDate ?uri } | julipc-p(huggingface) |
Give me a count of airlines whose hub airport is Los Angeles International Airport? | 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:hubAirport <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri rdf:type onto:Airline} | julipc-p(huggingface) |
Where is the football team located in which Josh Bell did his debut? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josh_Bell_(gridiron_football)> onto:debutTeam ?x . ?x onto:locationCity ?uri . } | julipc-p(huggingface) |
Where is the successor 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 . } | julipc-p(huggingface) |
How many awards have screenwriters won? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation <http://dbpedia.org/resource/Screenwriter> . ?x onto:award ?uri . } | julipc-p(huggingface) |
How many owners are there of things located in Alabama? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:city <http://dbpedia.org/resource/Alabama> . ?x onto:owner ?uri . } | julipc-p(huggingface) |
Which writer of A literary Nightmare also extended the work of The Apple tree ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Apple_Tree onto:basedOn ?uri. res:A_Literary_Nightmare onto:author ?uri} | julipc-p(huggingface) |
What is the television show whose opening theme is 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 rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
How many companies were founded in Denton, texas? | 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:part <http://dbpedia.org/resource/Denton_County,_Texas> . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company} | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.