question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What is the company which has Raymond Conner and Dennis Muilenburg as key person?
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:keyPeople <http://dbpedia.org/resource/Raymond_Conner> . ?uri prop:keyPeople <http://dbpedia.org/resource/Dennis_Muilenburg> . ?uri rdf...
lcquad
Who narrated the albums in which Harry Nilsson performed?
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:artist <http://dbpedia.org/resource/Harry_Nilsson> . ?x prop:narrated ?uri . ?x rdf:type onto:Album}
lcquad
What is the province of Rouen Business School ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Rouen_Business_School prop:province ?uri }
lcquad
List some songwriters whose work has been recorded in Miami?
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/Miami> . ?x prop:writer ?uri . ?x rdf:type onto:Work}
lcquad
Is KOMC-FM the sister station of KOMC (AM)?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/KOMC_(AM)> onto:sisterStation <http://dbpedia.org/resource/KOMC-FM> }
lcquad
What is the denomination of S. H. Kapadia ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:S._H._Kapadia prop:religion ?uri }
lcquad
who are the managers of england national under 20 football team?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs <http://dbpedia.org/resource/England_national_under-20_football_team> }
lcquad
What is the total number of relgions followed by people born in Bangkok?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Bangkok> . ?x onto:religion ?uri . }
lcquad
Which movies have someone on their cast from Shelby County in 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 onto:hometown <http://dbpedia.org/resource/Shelby_County,_Tennessee> . ?uri prop:starring ?x . ?uri rdf:type onto:Film}
lcquad
Who appointed the governor under whom Richard Winn served?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Richard_Winn onto:governor ?x . ?x prop:appointer ?uri . }
lcquad
What is the city whose mayor is Anne Hidalgo?
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:mayor <http://dbpedia.org/resource/Anne_Hidalgo> . ?uri rdf:type onto:Settlement}
lcquad
In which ice hockey league, did the team coached by Joel Quenneville win?
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:headCoach <http://dbpedia.org/resource/Joel_Quenneville> . ?uri prop:champion ?x . ?uri rdf:type onto:IceHockeyLeague}
lcquad
Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?
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:associatedMusicalArtist <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri prop:label <http://dbpedia.org/resource/Victor_Entert...
lcquad
Which american football players currently plays for Michigan Wolverines?
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 rdf:type onto:AmericanFootballPlayer}
lcquad
In how many different places have US people died?
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:placeOfBirth <http://dbpedia.org/resource/United_States> . ?x onto:deathPlace ?uri . ?uri rdf:type onto:Location}
lcquad
Count the number of software which runs on Microsoft Windows and mac OS ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:operatingSystem <http://dbpedia.org/resource/Microsoft_Windows> . ?uri onto:operatingSystem <http://dbpedia.org/resource/Mac_OS>}
lcquad
What is the common race of the Martin Molony and race of the Coneygree ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Martin_Molony onto:race ?uri. res:Coneygree prop:race ?uri}
lcquad
Which countries led by Elizabeth II?
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/Elizabeth_II> . ?uri rdf:type onto:Country}
lcquad
Who is the tenant of the home stadium of Toronto Phantoms?
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/Toronto_Phantoms> prop:arena ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}
lcquad
What is the purpose of Maharashtra Chess Association ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri }
lcquad
What is the draft team of the ice hockey players whose position is Centre ?
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:position <http://dbpedia.org/resource/Centre_(ice_hockey)> . ?x onto:draftTeam ?uri . ?x rdf:type onto:IceHockeyPlayer}
lcquad
Who represent the constituencies of Noe Valley and Duboce Triangle ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:constituency <http://dbpedia.org/resource/Noe_Valley,_San_Francisco> . ?uri prop:constituency <http://dbpedia.org/resource/Duboce_Triangle,_San_Francisco> . }
lcquad
What is the total number of religions that politicians have followed?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession <http://dbpedia.org/resource/Politician> . ?x onto:religion ?uri . }
lcquad
What sports team's arena is The Palace of Auburn Hills
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:arena <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri rdf:type onto:SportsTeam}
lcquad
Name the religious affiliation of Vagif Aliyev ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Vagif_Aliyev onto:religion ?uri }
lcquad
Who composed songs in the Mr Tambourine Man album?
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:album <http://dbpedia.org/resource/Mr._Tambourine_Man_(album)> . ?x onto:composer ?uri . ?x rdf:type onto:Song}
lcquad
To what companies is Dennis Muilenburg important?
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:keyPeople <http://dbpedia.org/resource/Dennis_Muilenburg> . ?uri rdf:type onto:Company}
lcquad
Name the TV show whose company is Playtone and written by Graham Yost?
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:company <http://dbpedia.org/resource/Playtone> . ?uri prop:writer <http://dbpedia.org/resource/Graham_Yost> . ?uri rdf:type onto:Televi...
lcquad
Where are the politicians buried who succeeded George Whitefield Davis?
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/George_Whitefield_Davis> . ?x prop:restingplace ?uri . ?x rdf:type onto:OfficeHolder}
lcquad
What is the fictional character which belongs to families of Darth Vader and Padm Amidala?
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:family <http://dbpedia.org/resource/Darth_Vader> . ?uri prop:family <http://dbpedia.org/resource/Padmé_Amidala> . ?uri rdf:type onto:Fi...
lcquad
What were robert sarvis and JAck Ryan nominated for ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Sarvis> onto:nominee ?uri. <http://dbpedia.org/resource/Jack_Ryan_(politician)> onto:nominee ?uri . }
lcquad
Count the number of other services of the companies which provides the Microsoft Azure as service ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services <http://dbpedia.org/resource/Microsoft_Azure> . ?x prop:services ?uri }
lcquad
Which animator of the The Skeleton Dance is also the director of The Haunted House (1929 film) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Skeleton_Dance> onto:animator ?uri. <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> onto:director ?uri}
lcquad
How many first drivers have participated when Scuderia Ferrari was a first team?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:firstTeam <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x onto:firstDriver ?uri . }
lcquad
In how many countries are people born who play cricket?
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:occupation <http://dbpedia.org/resource/Cricket> . ?x onto:stateOfOrigin ?uri . ?uri rdf:type onto:Country}
lcquad
What are the towns who have Thesaban system?
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:settlementType <http://dbpedia.org/resource/Thesaban> . ?uri rdf:type onto:Town}
lcquad
In how many different wars have people graduated from the Army Command and General staff college fought?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/United_States_Army_Command_and_General_Staff_College> . ?x prop:battles ?uri . }
lcquad
Which non fictional subject of Thud is the athletics of PATTS College of Aeronautics ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri. <http://dbpedia.org/resource/PATTS_College_of_Aeronautics> prop:athletics ?uri}
lcquad
Was Beth Tweddle primarily coached by Amanda Reddin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Beth_Tweddle prop:headcoach res:Amanda_Reddin }
lcquad
List the current members of Metro Station (band) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Station_(band)> prop:currentMembers ?uri }
lcquad
Was robert sarvis a nominee of the US Senate?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Robert_Sarvis onto:nominee res:United_States_Senate }
lcquad
Which major shrine of Tekle haymanot is the palce of death of Haile Selassie Gugsa ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Tekle_Haymanot onto:majorShrine ?uri. res:Haile_Selassie_Gugsa prop:placeOfDeath ?uri}
lcquad
Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?
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:artist <http://dbpedia.org/resource/Hiroji_Kiyotake> . ?uri onto:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri...
lcquad
Name a basketball player with teams as Chicago Bulls and Phoenix Suns?
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:team <http://dbpedia.org/resource/Chicago_Bulls> . ?uri onto:team <http://dbpedia.org/resource/Phoenix_Suns> . ?uri rdf:type onto:Baske...
lcquad
What is the home stadium of Kenya's women national football team ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_women's_national_football_team> prop:homeStadium ?uri }
lcquad
Where does the jurisdiction of European Border and Coast Guard fall?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:European_Border_and_Coast_Guard prop:jurisdiction ?uri }
lcquad
What is the award which is presented by Swedish Academy?
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:presenter <http://dbpedia.org/resource/Swedish_Academy> . ?uri rdf:type onto:Award}
lcquad
Where was the company who is the operator of Harihar Airport founded ?
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/Harihar_Airport> onto:operator ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}
lcquad
What are some important people in NGOs headed by Donna Shalala?
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:keyPerson <http://dbpedia.org/resource/Donna_Shalala> . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}
lcquad
What are the other key people of the non-profit organisations whose one of the key person is Joe Green ?
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:keyPeople <http://dbpedia.org/resource/Joe_Green_(entrepreneur)> . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}
lcquad
Who are the people whose phD advisor was Harry Harlow?
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:doctoralAdvisor <http://dbpedia.org/resource/Harry_Harlow> . ?uri rdf:type onto:Person}
lcquad
What is the county seat of Moscow Governorate ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Moscow_Governorate onto:capital ?uri }
lcquad
What are some books whose cover illustration is designed by Marshall Arisman?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:coverArtist <http://dbpedia.org/resource/Marshall_Arisman> . ?uri rdf:type onto:Book}
lcquad
Momoko Kchi has acted in which movie ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:starring <http://dbpedia.org/resource/Momoko_Kōchi> . ?uri rdf:type onto:Film}
lcquad
What show has Sirius XM Holdings and Fox Sports Radio as channels ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:channel <http://dbpedia.org/resource/Sirius_XM_Holdings> . ?uri onto:channel <http://dbpedia.org/resource/Fox_Sports_Radio> . ?uri rdf:type onto:TelevisionShow}
lcquad
What is the name of the television show whose developer is J. Michael Straczynski and actor is Jason Carter (actor)?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:developer <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri onto:starring <http://dbpedia.org/resource/Jason_Carter_(actor)> . ?uri rdf:type onto:TelevisionShow}
lcquad
What are some cars similar to the ones assembled at Toluca?
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:assembly <http://dbpedia.org/resource/Toluca> . ?x prop:related ?uri . ?x rdf:type onto:Automobile}
lcquad
Who is associated to the predecessor of Dan Mica?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:predecessor res:Dan_Mica . ?uri onto:associate ?x . }
lcquad
Michael Deeley produce how many movies?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer <http://dbpedia.org/resource/Michael_Deeley> . }
lcquad
List borders of the admin region bordering Arctic ocean ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:border res:Arctic_Ocean . ?x onto:border ?uri . }
lcquad
What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:J._T._Krogh onto:nationality ?uri. res:Camilla_Martin onto:country ?uri}
lcquad
How many food items have an ingredient from the Sapindales family?
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:order <http://dbpedia.org/resource/Sapindales> . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}
lcquad
Which district of Thorington railway station is the location of death of David Lewis (poet) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thorington_railway_station> onto:district ?uri. <http://dbpedia.org/resource/David_Lewis_(poet)> onto:deathPlace ?uri}
lcquad
Who was the head coach of Middlesbrough F.C. season 2006-7 also the coach of England national under 21 footbal team ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2006–07_Middlesbrough_F.C._season> onto:manager ?uri. <http://dbpedia.org/resource/England_national_under-21_football_team> prop:coach ?uri}
lcquad
Who designed the bridge over the Valaichchenai lagoon?
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/Valaichchenai_Lagoon> . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}
lcquad
Where did anton ausserer die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Anton_Ausserer prop:deathPlace ?uri }
lcquad
How many teams have used the stadium which hosted the WCW mayhem?
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 { <http://dbpedia.org/resource/WCW_Mayhem> prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}
lcquad
List bacterias whose orde is Bacillales and division is Firmicutes?
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/Bacillales> . ?uri onto:division <http://dbpedia.org/resource/Firmicutes> . ?uri rdf:type onto:Bacteria}
lcquad
Who are in the liang chow club?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:club res:Liang_Chow }
lcquad
To which family does korean fox belongs to ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Korean_fox onto:family ?uri }
lcquad
What is the alma mater of the person, whose child is Samuel Moreno Rojas?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:children res:Samuel_Moreno_Rojas . ?x prop:almaMater ?uri . }
lcquad
Name the river whose source place is Gloucestershire and mouth place is Southend-on-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:sourcePlace <http://dbpedia.org/resource/Gloucestershire> . ?uri onto:mouthPlace <http://dbpedia.org/resource/Southend-on-Sea> . ?uri rdf:type onto:River}
lcquad
In how many countries does the Zurich Affoltern am Albis Zug line go?
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:line <http://dbpedia.org/resource/Zürich–Affoltern_am_Albis–Zug_railway_line> . ?x onto:country ?uri . ?uri rdf:type onto:Country...
lcquad
How many movies did Joel Schumacher direct?
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:director <http://dbpedia.org/resource/Joel_Schumacher> . ?uri rdf:type onto:Film}
lcquad
In how many places did Julian Leow Beng Kim study?
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 { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> prop:almaMater ?uri . ?uri rdf:type onto:University}
lcquad
Is lion an animal?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Lion onto:kingdom res:Animal }
lcquad
Which cities have the river one of whose Tributary is the Missouri's big spring?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary <http://dbpedia.org/resource/Big_Spring_(Missouri)> . ?x onto:city ?uri . ?x rdf:type onto:River}
lcquad
Which Stanley Kubrick's movie has music by Laurie Johnson?
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:director <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri prop:music <http://dbpedia.org/resource/Laurie_Johnson> . ?uri rdf:type o...
lcquad
How many movies were directed by the graduate of Burbank 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 COUNT(?uri) WHERE { ?x prop:education <http://dbpedia.org/resource/Burbank_High_School_(Burbank,_California)> . ?uri prop:director ?x . ?uri rdf:type onto:Fi...
lcquad
What is the type of Vesak ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Vesak onto:type ?uri }
lcquad
Who have become famous by movies produced by Laurence Mark?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Laurence_Mark . ?uri onto:knownFor ?x . }
lcquad
Count all the scientologists.
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:religion <http://dbpedia.org/resource/Scientology> . }
lcquad
Laozi has authored which books ?
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:author <http://dbpedia.org/resource/Laozi> . ?uri rdf:type onto:Book}
lcquad
Name the river whose source location is Nevado Mismi and region is Arequipa Region?
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:sourceLocation <http://dbpedia.org/resource/Nevado_Mismi> . ?uri prop:sourceRegion <http://dbpedia.org/resource/Arequipa_Region> . ?uri...
lcquad
List the awards won by the fashion designer which have been recognized by Tennessee State Museum ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:award <http://dbpedia.org/resource/Tennessee_State_Museum> . ?x onto:award ?uri . ?x rdf:type onto:FashionDesigner}
lcquad
Where can I find companies which originated in Canada?
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:foundationPlace <http://dbpedia.org/resource/Canada> . ?x prop:locations ?uri . ?x rdf:type onto:Company}
lcquad
Name the species of Panthera leo fossilis ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Panthera_leo_fossilis onto:species ?uri }
lcquad
What is the nationality of Newin Chidchob ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri }
lcquad
List the affiliations of Wikipedia Zero ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Wikipedia_Zero prop:affiliations ?uri }
lcquad
What is the route start of Capitol 400 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Capitol_400 onto:routeStart ?uri }
lcquad
Which awards did the parents of Anna Bergman win ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Anna_Bergman onto:parent ?x . ?x prop:awards ?uri . }
lcquad
How many schools have a bison as their mascot?
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:mascot <http://dbpedia.org/resource/Bison> . ?uri rdf:type onto:School}
lcquad
What river originates in the Connecticut Lakes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:source <http://dbpedia.org/resource/Connecticut_Lakes> . ?uri rdf:type onto:River}
lcquad
List the bacterias whose division is Firmicutes and domain is bacteria?
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:division <http://dbpedia.org/resource/Firmicutes> . ?uri prop:domain <http://dbpedia.org/resource/Bacteria> . ?uri rdf:type onto:Bacter...
lcquad
Which country of Montaas Mayas Chiquibul is the birth place of Jos Bernardo Escobar?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Montañas_Mayas_Chiquibul prop:country ?uri. res:José_Bernardo_Escobar prop:birthPlace ?uri . }
lcquad
Who is the head coach of 2009-10 Middlesbrough F.C. season ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2009–10_Middlesbrough_F.C._season onto:manager ?uri }
lcquad
Name the battle fought by the people which also fought in Levant ?
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:battles <http://dbpedia.org/resource/Levant> . ?x prop:battles ?uri . ?x rdf:type onto:Person}
lcquad
Which work institutions of the Andrew Schally is the alma mater of the Mara Eugenia Rojas Correa ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri. res:María_Eugenia_Rojas_Correa prop:almaMater ?uri}
lcquad
Which politician's constituency is led by the SF Board of Supervisors?
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:leaderTitle <http://dbpedia.org/resource/San_Francisco_Board_of_Supervisors> . ?uri prop:constituency ?x . ?uri rdf:type onto:OfficeHold...
lcquad
How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?
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 { <http://dbpedia.org/resource/François-Marie_Le_Marchand_de_Lignery> onto:battle ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryCo...
lcquad