question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Where are the cooper mountain vineyards and Mt. bachelor ski area located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Cooper_Mountain_Vineyards onto:location ?uri. res:Mount_Bachelor_ski_area onto:location ?uri . } | lcquad |
How many tenants are there in the Mercedes Benz Superdome? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> onto:tenant ?uri . } | lcquad |
What is the affiliation of the hospital where Alfred Blalock works? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Alfred_Blalock prop:workInstitutions ?x . ?x prop:affiliation ?uri . } | lcquad |
How many genres gave birth to other genres which emphasize Bass Guitars? | 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:instruments <http://dbpedia.org/resource/Bass_guitar> . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre} | lcquad |
How many bands began in Birmingham? | 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:origin <http://dbpedia.org/resource/Birmingham> . ?uri rdf:type onto:Band} | lcquad |
Where does the river end which starts in Richmond Park? | 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:sourcePlace <http://dbpedia.org/resource/Richmond_Park> . ?x prop:mouthLocation ?uri . ?x rdf:type onto:Stream} | lcquad |
How many causes of death have been associated with American citizens? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:citizenship <http://dbpedia.org/resource/United_States> . ?x onto:deathCause ?uri . } | lcquad |
Louis Dunbar is the coach of which basketball team ? | 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:coach <http://dbpedia.org/resource/Louis_Dunbar> . ?uri rdf:type onto:BasketballTeam} | lcquad |
Was Noko a band member of Luxuria? | PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Luxuria_(band)> onto:formerBandMember <http://dbpedia.org/resource/Noko> } | lcquad |
Charles Willing Byrd was the governor under which politician? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:governor res:Charles_Willing_Byrd } | lcquad |
Do the asiana airlines fly to Jeju airport? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Asiana_Airlines onto:targetAirport res:Jeju_International_Airport } | lcquad |
For how many teams have the league players of Czech Extraliga, previously played? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league <http://dbpedia.org/resource/Czech_Extraliga> . ?x onto:formerTeam ?uri . } | lcquad |
Which television show is the subsequent work of Frasier and the opening theme is Gary Portnoy? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri onto:openingTheme <http://dbpedia.org/resource/Gary_Portnoy> . ?uri rdf:type onto:TelevisionShow} | lcquad |
Count the number of sports played by university which also plays Taekwondo ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics <http://dbpedia.org/resource/Taekwondo> . ?x prop:athletics ?uri } | lcquad |
What continent of the world has Baja California peninsula and also has WEPG in one of it's cities? | 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/Baja_California_Peninsula> onto:location ?uri. <http://dbpedia.org/resource/WEPG> prop:city ?uri . ?uri rdf:type ont... | lcquad |
Rashid Behbudov State Song Theatre and Baku Puppet Theatre can be found in which country? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Rashid_Behbudov_State_Song_Theatre onto:locationCountry ?uri. res:Baku_Puppet_Theatre onto:locationCountry ?uri . } | lcquad |
What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> onto:service ?uri. <http://dbpedia.org/resource/José_Rivera_(playwright)> prop:awards ?uri} | lcquad |
Which football players currently have their contracts with Stoke City F.C.? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:Stoke_City_F.C. } | lcquad |
What are the cities around the sea which flows into the Atlantic? | 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:inflow <http://dbpedia.org/resource/Atlantic_Ocean> . ?x prop:cities ?uri . ?x rdf:type onto:Sea} | lcquad |
Artists trained at art students league NY are buried where? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:training <http://dbpedia.org/resource/Art_Students_League_of_New_York> . ?x onto:restingPlace ?uri . ?x rdf:type onto:Artist} | lcquad |
What is the municipality of Liberty Bell ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Liberty_Bell onto:municipality ?uri } | lcquad |
What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ? | 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/Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom> onto:bronzeMedalist ?x . ?x prop:deathPlace ?uri . ?x rdf... | lcquad |
What is the debut team of the american football player who studied in North Fort Myers High School? | 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:highschool <http://dbpedia.org/resource/North_Fort_Myers_High_School> . ?x prop:debutteam ?uri . ?x rdf:type onto:AmericanFootballPlayer... | lcquad |
In which races did Mouse Morris take part? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Mouse_Morris prop:race ?uri } | lcquad |
Who are the writers of South Park: The Stick of Truth? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:South_Park:_The_Stick_of_Truth prop:writer ?uri } | lcquad |
What is the leading party in Baraily which Chandra Shekhar too is associated with? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Baraily onto:leaderName ?uri. res:Chandra_Shekhar onto:otherParty ?uri} | lcquad |
Whose commanders are Colin Powell and Jaber Al-Ahmad Al-Sabah? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:commander <http://dbpedia.org/resource/Colin_Powell> . ?uri onto:commander <http://dbpedia.org/resource/Jaber_Al-Ahmad_Al-Sabah> . } | lcquad |
Name the fictional character who was in Terminator and portrayer is Terminator 2: Judgment Day? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:series <http://dbpedia.org/resource/Terminator_(franchise)> . ?uri onto:portrayer <http://dbpedia.org/resource/Terminator_2:_Judgment_Day> . ?uri rdf:type onto:FictionalCharacter} | lcquad |
List the trainers of Shinya Aoki ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Shinya_Aoki onto:trainer ?uri } | lcquad |
What do typically NGOs work for? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:type <http://dbpedia.org/resource/Non-governmental_organization> . ?x prop:purpose ?uri . } | lcquad |
What does the river end on whose border we find in Bjelasnica? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:border res:Bjelašnica . ?x onto:mouthCountry ?uri . } | lcquad |
List few schools situated in Reading, Berkshire ? | 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:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri rdf:type onto:School} | lcquad |
Who preceded Lucius Crus as an office holder? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:predecessor <http://dbpedia.org/resource/Lucius_Cornelius_Lentulus_Crus> . ?uri rdf:type onto:OfficeHolder} | lcquad |
How many universities participate in the NCAA Division I Football Bowl Subdivision? | 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:athletics <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri rdf:type onto:University} | lcquad |
Where is the senator from whose successor was James belford? | 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:successor <http://dbpedia.org/resource/James_B._Belford> . ?x onto:region ?uri . ?x rdf:type onto:Senator} | lcquad |
What is the state of origin of Thomas Pfyl ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Thomas_Pfyl onto:stateOfOrigin ?uri } | lcquad |
What is the nationality of the successor of Nii Okaidja Adamafio ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Nii_Okaija_Adamafio prop:successor ?x . ?x onto:nationality ?uri . } | lcquad |
By which university is the literary magazine named Stone Canoe published? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Stone_Canoe onto:publisher ?uri } | lcquad |
Is Plymouth High School for Girls in Devon county? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Plymouth_High_School_for_Girls onto:county res:Devon } | lcquad |
Give me a count of companies located in Texas ? | 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:locationCity <http://dbpedia.org/resource/Texas> . ?uri rdf:type onto:Company} | lcquad |
Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:product <http://dbpedia.org/resource/Pixar_Image_Computer> . ?uri onto:keyPerson <http://dbpedia.org/resource/Edwin_Catmull> . ?uri rdf:type onto:Company} | lcquad |
Who is the cover artist of Doctor Mirabilis (novel) ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Mirabilis_(novel)> prop:coverArtist ?uri } | lcquad |
list some shawnee people? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:nationality res:Shawnee } | lcquad |
Name the office holder whose predecessor is Henry E. Catto, Jr. and successor is Adrian A. Basora? | 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/Henry_E._Catto,_Jr.> . ?uri prop:successor <http://dbpedia.org/resource/Adrian_A._Basora> . ?u... | lcquad |
Who is the common prime minster of William Deaner and mark Latham ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_Deane onto:primeMinister ?uri. res:Mark_Latham prop:primeminister ?uri} | lcquad |
What is the parent company of company which owns Sony 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 { <http://dbpedia.org/resource/Sony_Bank> prop:parent ?x . ?x onto:parentCompany ?uri . ?x rdf:type onto:Company} | lcquad |
How many games are played at universities in Metro Manilla? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:state <http://dbpedia.org/resource/Metro_Manila> . ?x prop:athletics ?uri . } | lcquad |
Name all sitcoms whose theme music is made by Miley Cyrus? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:musicalBand <http://dbpedia.org/resource/Miley_Cyrus> . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
Who is the former partner of the pupil of Dalilah Sappenfield? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:coach res:Dalilah_Sappenfield . ?x onto:formerPartner ?uri . } | lcquad |
Who is the Pole driver of 1992 Canadian Grand Prix ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:1992_Canadian_Grand_Prix prop:poleDriver ?uri } | lcquad |
Which city's neighboring municipalities are Lancy and Pregny-Chambsy? | 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:neighboringMunicipalities <http://dbpedia.org/resource/Lancy> . ?uri onto:neighboringMunicipality <http://dbpedia.org/resource/Pregny-Ch... | lcquad |
Which home town of PAvel Moroz is the death location of the Yakov Estrin ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pavel_Moroz prop:hometown ?uri. res:Yakov_Estrin onto:deathPlace ?uri} | lcquad |
What is the country whose speaker of the Dewan Rakyat is Pandikar Amin Mulia? | 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:leaderName <http://dbpedia.org/resource/Pandikar_Amin_Mulia> . ?uri rdf:type onto:Country} | lcquad |
Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> onto:maintainedBy ?uri. <http://dbpedia.org/resource/King_County,_Washington> onto:countySeat ?uri} | lcquad |
From what countries have people participated in the Excelsior Stakes? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race <http://dbpedia.org/resource/Excelsior_Stakes> . ?x onto:birthPlace ?uri . } | lcquad |
What are the largest cities in each of the destinations of TranStar Airlines? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:TranStar_Airlines onto:destination ?x . ?x onto:largestCity ?uri . } | lcquad |
Which writer is famous for works written by Neil Gaiman? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:writers res:Neil_Gaiman . ?uri onto:notableWork ?x . } | lcquad |
Who all have been a president of educational institutes in Paud? | 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:location <http://dbpedia.org/resource/Paud> . ?x prop:president ?uri . ?x rdf:type onto:EducationalInstitution} | lcquad |
Who is the developer of the software which serves the platform for King's Quest VI? | 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/King's_Quest_VI> onto:computingPlatform ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software} | lcquad |
Who was in youth clubs of FC Barcelona and Newell's Old Boys? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?uri prop:youthclubs <http://dbpedia.org/resource/FC_Barcelona> . ?uri prop:youthclubs <http://dbpedia.org/resource/Newell's_Old_Boys> . } | lcquad |
For which country did Alexander Lippisch design airplanes? | 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/Alexander_Lippisch> . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft} | lcquad |
What do the relatives of James Hartness do? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:relation res:James_Hartness . ?x prop:occupation ?uri . } | lcquad |
Who is the appointer of William Cushing ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_Cushing onto:appointer ?uri } | lcquad |
Who is the former partner of Chris Knierim ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Chris_Knierim onto:formerPartner ?uri } | lcquad |
Who is office holder of constituencies Duboce Triangle and Noe Valley ? | 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:constituency <http://dbpedia.org/resource/Duboce_Triangle,_San_Francisco> . ?uri prop:constituency <http://dbpedia.org/resource/Noe_Val... | lcquad |
What is the university attended by the baseball player who's known for Olin Corporation? | 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:knownFor <http://dbpedia.org/resource/Olin_Corporation> . ?x prop:education ?uri . ?x rdf:type onto:BaseballPlayer} | lcquad |
How many different kinds of softwares have been released under the GPL license? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:license <http://dbpedia.org/resource/GNU_General_Public_License> . ?x onto:genre ?uri . } | lcquad |
What is the religion of the relatives of Carmela Soprano ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Carmela_Soprano onto:relative ?x . ?x onto:religion ?uri . } | lcquad |
In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers? | 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:firstTeam <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x prop:poleDriver ?uri . ?x rdf:type onto:GrandPrix} | lcquad |
What is the citizenship of Erastus Wiman ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Erastus_Wiman onto:citizenship ?uri } | lcquad |
What are some awards given to the french 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:stateOfOrigin res:French_people . ?x prop:awards ?uri . } | lcquad |
where are the sister stations of CFRB broadcasted? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations res:CFRB . ?x onto:broadcastArea ?uri . } | lcquad |
What awards have been once awarded to Ingmar Bergman, and have employed the service of Laemmle Theatres? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ingmar_Bergman prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri} | lcquad |
Is the Kia Sportage similar to the Hyundai Lavita? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Hyundai_Lavita onto:relatedMeanOfTransportation res:Kia_Sportage } | lcquad |
Name the district of Robert William Wilcox ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri } | lcquad |
What are the video games composed by Hirokazu Tanaka? | 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:composer <http://dbpedia.org/resource/Hirokazu_Tanaka> . ?uri rdf:type onto:VideoGame} | lcquad |
What are the academic interest of Philip Novak? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Philip_Novak prop:mainInterests ?uri } | lcquad |
Tandem Computers is the subsidiary of which company? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:Tandem_Computers } | lcquad |
Name the mountain range in which the mountain peak of Malatraix belongs? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Malatraix onto:parentMountainPeak ?x . ?x onto:mountainRange ?uri . } | lcquad |
Who offers the services of OneDrive and Outlook.com? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?uri prop:services res:OneDrive . ?uri prop:services res:Outlook.com . } | lcquad |
What is the location of the Walter Evans Edge office which is also the place of birth of henry Miller ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Walter_Evans_Edge prop:office ?uri. res:Henry_Miller_Shreve onto:birthPlace ?uri} | lcquad |
List down the prime ministers of Peter Thorneycroft ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Peter_Thorneycroft onto:primeMinister ?uri } | lcquad |
What is the division of the companies who make Runes of Magic? | 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:products <http://dbpedia.org/resource/Runes_of_Magic> . ?x onto:division ?uri . ?x rdf:type onto:Company} | lcquad |
List the birthplace of the medicians who studied in Harvard. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
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} | lcquad |
What are the movies whose director of photography is Jordan Cronenweth? | 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:cinematography <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri rdf:type onto:Film} | lcquad |
Which river ends at Thames Estuary and North Sea? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:riverMouth <http://dbpedia.org/resource/Thames_Estuary> . ?uri onto:riverMouth <http://dbpedia.org/resource/North_Sea> . ?uri rdf:type onto:River} | lcquad |
What is the university whose affiliations is Graham Holdings Company? | 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/Graham_Holdings_Company> . ?uri rdf:type onto:University} | lcquad |
What is the division of Serbia national American football team ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri } | lcquad |
How many companies are located in Toronto ? | 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:locationCity <http://dbpedia.org/resource/Toronto> . ?uri rdf:type onto:Company} | lcquad |
From where is Quinn Ojinnaka billed? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Quinn_Ojinnaka prop:billed ?uri } | lcquad |
What are the movies whose editor died in Westwood, Los Angeles? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri onto:editing ?x . } | lcquad |
What are the software which uses platforms as ARM architecture? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform <http://dbpedia.org/resource/ARM_architecture> . ?uri rdf:type onto:Software} | lcquad |
Which are the comics characters painted by Bruce Timm and created by Paul Dini? | 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:creator <http://dbpedia.org/resource/Bruce_Timm> . ?uri prop:creators <http://dbpedia.org/resource/Paul_Dini> . ?uri rdf:type onto:Comi... | lcquad |
Where did Jerry Tagge do his elementary schooling? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Jerry_Tagge prop:highSchool ?uri } | lcquad |
Who worked at A Goon's Deed in a Weary World and CBS? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:occupation <http://dbpedia.org/resource/A_Goon's_Deed_in_a_Weary_World> . ?uri onto:occupation <http://dbpedia.org/resource/CBS> . } | lcquad |
Wo which countries have the members of Ukrainian ministry of internal affairs swore their oath? | 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 . } | lcquad |
Which rivers start at the Brower's Spring? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain <http://dbpedia.org/resource/Brower's_Spring> } | lcquad |
In which movies directed by Orson Welles has Bernard Herrmann as music composer ? | 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:musicComposer <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri prop:director <http://dbpedia.org/resource/Orson_Welles> . ?uri rdf... | lcquad |
Who is the builder of Presidio Santa Cruz de Terrenate ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Presidio_Santa_Cruz_de_Terrenate onto:builder ?uri } | lcquad |
List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi ? | 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:homeStadium <http://dbpedia.org/resource/Nairobi> . ?x prop:homeStadium ?uri . ?x rdf:type onto:SoccerClub} | lcquad |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.