question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What are the school mascots in Blytheville school district?
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:district <http://dbpedia.org/resource/Blytheville_School_District> . ?x prop:mascot ?uri . ?x rdf:type onto:School}
lcquad
Which country has the Carmel Winery and the Teperberg 1870 winery ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Carmel_Winery prop:locationCountry ?uri. res:Teperberg_1870 prop:locationCountry ?uri . }
lcquad
Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri onto:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri rdf:type onto:TelevisionShow}
lcquad
Count the religions followed by people living in British Columbia.
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:residence <http://dbpedia.org/resource/British_Columbia> . ?x prop:religion ?uri . }
lcquad
List some teammates of Ndonga Mianga?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:currentMember res:Ndonga_Mianga . ?x prop:name ?uri . }
lcquad
List the characters of Lysistrata ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lysistrata prop:characters ?uri }
lcquad
Is Joe Schilling the trainer of Nick Diaz?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Nick_Diaz onto:trainer res:Joe_Schilling }
lcquad
Which TV shows distributor is Broadcast syndication and developed by Brian Graden ?
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:developer <http://dbpedia.org/resource/Brian_Graden> . ?uri onto:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri...
lcquad
In how many districts is there a borough called tendring?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:borough <http://dbpedia.org/resource/Tendring> . ?x onto:district ?uri . }
lcquad
What games are played at universities in Lanao Del Sur?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:state <http://dbpedia.org/resource/Lanao_del_Sur> . ?x onto:athletics ?uri . ?x rdf:type onto:University}
lcquad
For everyone who died in paris, count their different fields of work.
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace <http://dbpedia.org/resource/Paris> . ?x prop:fields ?uri . }
lcquad
What is the award won of the scientists known for Cubic Hermite spline?
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:knownFor <http://dbpedia.org/resource/Cubic_Hermite_spline> . ?x onto:award ?uri . ?x rdf:type onto:Scientist}
lcquad
What is the meaning of Heydar ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Heydar prop:meaning ?uri }
lcquad
Which composer subsequent work of Moondog Matinee and also composed The TImes They are A changin ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> onto:musicBy ?uri. <http://dbpedia.org/resource/Moondog_Matinee> onto:subsequentWork ?uri}
lcquad
On how many different grounds were seasons chaired by Ronaldo held?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman <http://dbpedia.org/resource/Ronaldo> . ?x onto:ground ?uri . }
lcquad
Sentinel High School team is known as ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sentinel_High_School prop:teamName ?uri }
lcquad
Sampson Cudjoe plays for the Ghana national team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Sampson_Cudjoe prop:nationalteam res:Ghana }
lcquad
Where does the publisher of Kathimerini live?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kathimerini onto:publisher ?x . ?x prop:residence ?uri . }
lcquad
Name the basketball team which is coached by Louis Dunbar and has president as Jeff Munn ?
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 prop:president <http://dbpedia.org/resource/Jeff_Munn> . ?uri rdf:type onto:Bas...
lcquad
Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?
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:headCoach <http://dbpedia.org/resource/John_Tortorella> . ?uri onto:team ?x . ?uri rdf:type onto:IceHockeyPlayer}
lcquad
Which draft team of bob Macmillan is also the prospect team of Mikhail Pashnin ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Bob_MacMillan prop:draftTeam ?uri}
lcquad
How many leagues have used the O.co Coliseum?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/O.co_Coliseum> onto:tenant ?uri . }
lcquad
What is the common palce of study for jack McGregor and Philip W. Pillsbury ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jack_McGregor onto:education ?uri. res:Philip_W._Pillsbury prop:education ?uri}
lcquad
Under which president did Loretta Ucelli and Ann Lewis hold an office?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Loretta_Ucelli onto:president ?uri. res:Ann_Lewis onto:president ?uri . }
lcquad
What team did the players start their careers with, who right now play for Fleisher Yarn?
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:team <http://dbpedia.org/resource/Fleisher_Yarn> . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}
lcquad
What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:affiliation <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_of_Higher_Learning> . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}
lcquad
Where did the people die who were known for Young Life?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:knownFor <http://dbpedia.org/resource/Young_Life> . ?x onto:deathPlace ?uri . ?x rdf:type onto:Person}
lcquad
Who are the chancellors of universities which is affiliated with Plymouth University?
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:affiliations <http://dbpedia.org/resource/Plymouth_University> . ?x prop:chancellor ?uri . ?x rdf:type onto:University}
lcquad
Does Lionel Messi play in the Argentina National Football Team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Lionel_Messi prop:nationalteam res:Argentina_national_football_team }
lcquad
Which awards did the narrator of Oscar and Lucinda win?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oscar_and_Lucinda_(film)> onto:narrator ?x . ?x prop:awards ?uri . }
lcquad
What is the musical whose music is by Jose Luis Narom, based upon?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:musicBy <http://dbpedia.org/resource/José_Luis_Narom> . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}
lcquad
Is the Providence Chapel, Charlwood made in New English style of architecture?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> prop:style <http://dbpedia.org/resource/New_England> }
lcquad
Which workplace of the Michael M. Sears is also the governing body of the Burro Flats Painted Cave?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears onto:employer ?uri. res:Burro_Flats_Painted_Cave onto:governingBody ?uri}
lcquad
Who was on the boards of Freedom of the City and Royal Society?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:board res:Freedom_of_the_City . ?uri onto:board res:Royal_Society . }
lcquad
Who are the people which ITV(TV network) has employed?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:employer <http://dbpedia.org/resource/ITV_(TV_network)> . }
lcquad
What is the broadcast area of WBCQ (SW) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBCQ_(SW)> prop:area ?uri }
lcquad
What religion did the president follow which was served by Kang Young-hoon?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kang_Young-hoon> prop:president ?x . ?x onto:religion ?uri . }
lcquad
Which kind of buildings are found in England?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry <http://dbpedia.org/resource/England> . ?x onto:type ?uri . ?x rdf:type onto:Building}
lcquad
In which state is the team, which has John Roeslein?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_Roeslein onto:team ?x . ?x prop:state ?uri . }
lcquad
Which awards has been given to both michel hazanavicius and geoffrey rush?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Michel_Hazanavicius prop:awards ?uri. res:Geoffrey_Rush prop:awards ?uri . }
lcquad
Give me the count of all people who ascented a peak in California?
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:locatedInArea <http://dbpedia.org/resource/California> . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}
lcquad
List the total number of regions of the building whose are located in\Grand Forks Air Force Base?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:region <http://dbpedia.org/resource/Grand_Forks_Air_Force_Base> . ?x onto:region ?uri }
lcquad
Is Halyna Kukhar the former coach of Stanislav Morozov?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Stanislav_Morozov onto:formerCoach res:Halyna_Kukhar }
lcquad
Rickenbacker is a musical instrument played by which artists?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:instrument <http://dbpedia.org/resource/Rickenbacker> . ?uri rdf:type onto:MusicalArtist}
lcquad
List down all the associcated musical artist of the artist of In a Word or 2 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:In_a_Word_or_2 prop:artist ?x . ?x onto:associatedMusicalArtist ?uri . }
lcquad
List the home town of the people who have Ontario as one of it ?
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:homeTown <http://dbpedia.org/resource/Ontario> . ?x prop:homeTown ?uri . ?x rdf:type onto:Person}
lcquad
Joe Shuster has created how many comics character ?
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:creators <http://dbpedia.org/resource/Joe_Shuster> . ?uri rdf:type onto:ComicsCharacter}
lcquad
Which currency is primarily used by the company which is the distributing label of VDE-Gallo Records?
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/VDE-Gallo_Records> onto:distributingLabel ?x . ?x prop:currency ?uri . ?x rdf:type onto:Organisation}
lcquad
Name whose youth club was FC Barcelona ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs res:FC_Barcelona . }
lcquad
Which awards did the writer of Persona win ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> onto:writer ?x . ?x prop:awards ?uri . }
lcquad
What is the highschool of the american football player who joined the Robert Morris Colonials program?
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:school <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?x prop:highschool ?uri . ?x rdf:type onto:AmericanFootballPlaye...
lcquad
Was the Army Air Corps honored for the battle of Iraq?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Army_Air_Corps_(United_Kingdom)> prop:battleHonours <http://dbpedia.org/resource/Iraq> }
lcquad
How many awards have graduates from the University of Queensland earned?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/University_of_Queensland> . ?x prop:awards ?uri . }
lcquad
Which artist was taught by Jos Ruiz y Blasco?
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:training <http://dbpedia.org/resource/José_Ruiz_y_Blasco> . ?uri rdf:type onto:Artist}
lcquad
What is the location of Sam Sen Railway Station ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sam_Sen_Railway_Station prop:other ?uri }
lcquad
Which ground of 2016 Fort Lauderdale Strikers season is the palce of birth of Kaitlyn Ashley ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri. res:Kaitlyn_Ashley prop:placeOfBirth ?uri}
lcquad
Which minister was responsible for Kriminalpolizie?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kriminalpolizei onto:leader ?uri }
lcquad
Which TV show produced by Paramount Television and is located in Massachusetts ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:company <http://dbpedia.org/resource/Paramount_Television> . ?uri onto:location <http://dbpedia.org/resource/Massachusetts> . ?uri rdf:...
lcquad
Name the sea located near Europe and has a nearby city as Rostock ?
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:cities <http://dbpedia.org/resource/Rostock> . ?uri onto:location <http://dbpedia.org/resource/Europe> . ?uri rdf:type onto:Sea}
lcquad
What ingredients are used in preparing the dish of Ragout fin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ragout_fin onto:ingredient ?uri }
lcquad
What is the former partner of the figure skaters whose current partner is Alexa Scimeca?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:currentPartner <http://dbpedia.org/resource/Alexa_Scimeca> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}
lcquad
In how many nations does Rhaetian Railways own train stations?
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:owningOrganisation <http://dbpedia.org/resource/Rhaetian_Railway> . ?x onto:country ?uri . ?uri rdf:type onto:Country}
lcquad
Does Saneh Lungkeaw play for the Thailand's national team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Saneh_Lungkeaw prop:nationalteam res:Thailand }
lcquad
Which company released the software RenderMan?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:products <http://dbpedia.org/resource/RenderMan_(software)> . ?uri rdf:type onto:Company}
lcquad
In which cities are there american football teams where Matt Snorton played?
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/Matt_Snorton> prop:pastteams ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:AmericanFootballTeam}
lcquad
Which country's national motto is "Truth prevails"?
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:nationalMotto <http://dbpedia.org/resource/Truth_prevails> . ?uri rdf:type onto:Country}
lcquad
What is the homeport of INS Viraat (R22) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/INS_Viraat_(R22)> onto:homeport ?uri }
lcquad
What is the largest city of the country where P. Sathyanarayanan was born?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/P._Sathyanarayanan> prop:birthplace ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}
lcquad
Which county of Tremont Avenue is also the birht place of Ron Galotti ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Tremont_Avenue prop:counties ?uri. res:Ron_Galotti onto:birthPlace ?uri}
lcquad
Where was William anthony trained ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> prop:training ?uri }
lcquad
Which parent organization of Get TV also owns the Galleria ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri. res:The_Galleria onto:owner ?uri}
lcquad
Name the wine regions of Bogdanua ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri }
lcquad
What is the resting place of the child of Linda Lee Cadwell?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Linda_Lee_Cadwell prop:children ?x . ?x onto:restingPlace ?uri . }
lcquad
Which board game can be said as a mind based game?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:genre res:Board_game . ?uri onto:genre res:Mind_sport . }
lcquad
Where are the philosophers from, whose main work is on the matter of feminism 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:mainInterest <http://dbpedia.org/resource/Feminism_in_Canada> . ?x prop:region ?uri . ?x rdf:type onto:Philosopher}
lcquad
What are the things built by Eristoff ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri }
lcquad
What is the official residence of Sarah Kazemy ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sarah_Kazemy prop:residence ?uri }
lcquad
What are shows whose theme music composer's home town is New York?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:hometown <http://dbpedia.org/resource/New_York> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Name the university whose affiliations's foundation is in Washington, D.C.?
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:foundation <http://dbpedia.org/resource/Washington,_D.C.> . ?uri prop:affiliations ?x . ?uri rdf:type onto:University}
lcquad
Who was the coach of 1972 Oakland Raiders season ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:1972_Oakland_Raiders_season onto:coach ?uri }
lcquad
Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu> prop:constituency ?uri. <http://dbpedia.org/resource/CitiTrends_(radio_show)> onto:country ?uri}
lcquad
Which TV show's composer is Judy Hart Angelo and executive producer as Glen and Les Charles?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:composer <http://dbpedia.org/resource/Judy_Hart_Angelo> . ?uri onto:executiveProducer <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri rdf:type onto:TelevisionShow}
lcquad
Where did they debut their careers , those who have played for US men's national soccer team?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam <http://dbpedia.org/resource/United_States_men's_national_soccer_team> . ?x prop:debutteam ?uri . }
lcquad
What are on the borders of Shimsa Plateau?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Shimōsa_Plateau onto:border ?uri }
lcquad
What is the former team of the american football players whose position is Running back?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:position <http://dbpedia.org/resource/Running_back> . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}
lcquad
Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Theme_Time_Radio_Hour> prop:creator ?uri. <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> onto:musicBy ?uri}
lcquad
How many different kinds of games are published by Interplay Entertainment?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:publisher <http://dbpedia.org/resource/Interplay_Entertainment> . ?x prop:genre ?uri . }
lcquad
What other awards have been given to Goya Award Winners?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:award res:Goya_Awards . ?x prop:awards ?uri . }
lcquad
How many other important work has been done by the writers of Sarah Jane Adventures?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableworks <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?x onto:notableWork ?uri . }
lcquad
Race horses whose grandsire is Wild Risk have taken part in which races?
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:grandsire <http://dbpedia.org/resource/Wild_Risk> . ?x prop:race ?uri . ?x rdf:type onto:RaceHorse}
lcquad
Who are the tenants of the stadium which is a venue of 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 ?uri WHERE { <http://dbpedia.org/resource/WCW_Mayhem> prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}
lcquad
Which coach of Marquette Golden Eagles men's basketball team is also the head coach of Virginia Tech Hokies men's basketball team ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2014–15_Virginia_Tech_Hokies_men's_basketball_team> prop:headcoach ?uri. <http://dbpedia.org/resource/2012–13_Marquette_Golden_Eagles_men's_basketball_team> onto:coach ?uri}...
lcquad
Which are the races in which Martin Molony participated?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Martin_Molony onto:race ?uri }
lcquad
With what company is the service OneDrive associated?
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:services <http://dbpedia.org/resource/OneDrive> . ?uri rdf:type onto:Company}
lcquad
Where common region are soylent and bannock sold?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Soylent_(drink)> onto:region ?uri. <http://dbpedia.org/resource/Bannock_(food)> onto:region ?uri . }
lcquad
What awards have been given to citizens of the Ottoman Empire?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:citizenship res:Ottoman_Empire . ?x onto:award ?uri . }
lcquad
List the science fiction shows broadcasted on BBC HD ?
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:genre <http://dbpedia.org/resource/Science_fiction> . ?uri onto:network <http://dbpedia.org/resource/BBC_HD> . ?uri rdf:type onto:Telev...
lcquad
Who is the person opposed by Tom McLaury and Ike Clanton?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:opponent <http://dbpedia.org/resource/Tom_McLaury> . ?uri onto:opponent <http://dbpedia.org/resource/Ike_Clanton> . ?uri rdf:type onto:Person}
lcquad
List the products of Playboy Enterprises?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Playboy_Enterprises prop:products ?uri }
lcquad
Name the former broadcast network of the television station which is the sister stations of WGBC?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:WGBC prop:sisterStations ?x . ?x onto:formerBroadcastNetwork ?uri . }
lcquad