question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which route junction of the Rhode Island Route 15 is the place of birth of the Michael Poulin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri. res:Michael_Poulin prop:placeOfBirth ?uri}
lcquad
What is the birth city of the Salford City F.C players ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:team <http://dbpedia.org/resource/Salford_City_F.C.> . ?x onto:birthPlace ?uri . ?x rdf:type onto:SoccerPlayer}
lcquad
What is the birthplace of Liudmila Privivkova and Qadir Huseynov ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liudmila_Privivkova onto:birthPlace ?uri. res:Qadir_Huseynov onto:birthPlace ?uri . }
lcquad
Who are the maintainers of the bridges which cross the pandaruan river?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:crosses <http://dbpedia.org/resource/Pandaruan_River> . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}
lcquad
Who has official residences at Colts Neck Township and Beverly Hills?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:residence <http://dbpedia.org/resource/Colts_Neck_Township,_New_Jersey> . ?uri onto:residence <http://dbpedia.org/resource/Beverly_Hills,_California> . }
lcquad
List the area of radio stations whose sister station is WBCQ-FM?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBCQ-FM> prop:sisterStations ?x . ?x prop:area ?uri . }
lcquad
Which school did Robbie Diack attend?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Robbie_Diack prop:school ?uri }
lcquad
List the alma mater of the congressmen who attended Nashville, Tennessee ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:almaMater <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x onto:almaMater ?uri . ?x rdf:type onto:Congressman}
lcquad
What is the broadcast area of CFRX ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri }
lcquad
Who developed games based on the Cars series?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:series <http://dbpedia.org/resource/Cars_(film)> . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}
lcquad
What are the american football players whose former team's coach is Jason Maas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:coach <http://dbpedia.org/resource/Jason_Maas> . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer}
lcquad
Which hub of Cascade Airways is also the resting place of Brandon Lee ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri. res:Brandon_Lee onto:restingPlace ?uri}
lcquad
How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x onto:manufacturer ?uri . }
lcquad
What is the sea connected to Kaliningrad and Gdask?
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/Kaliningrad> . ?uri prop:cities <http://dbpedia.org/resource/Gdańsk> . ?uri rdf:type onto:Sea}
lcquad
Name the agency of Election Commission of Thailand ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Election_Commission_of_Thailand prop:agencyName ?uri }
lcquad
In which country did the planes designed by Ursula Hanle originate?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:designer <http://dbpedia.org/resource/Ursula_Hänle> . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}
lcquad
what are some units udner the US department of navy?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_the_Navy }
lcquad
Which destination of the Novair International Airways is also the predecessor of the Chevrolet Caprice?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri. res:Chevrolet_Caprice onto:predecessor ?uri}
lcquad
What did other artists associated with the Shirelles make?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand <http://dbpedia.org/resource/The_Shirelles> . ?x onto:occupation ?uri . ?x rdf:type onto:Artist}
lcquad
Which sitcoms are made by a company headquartered in NYC?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:headquarter <http://dbpedia.org/resource/New_York_City> . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Name the city of Duwamish River ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Duwamish_River onto:city ?uri }
lcquad
List the children of the parent of Marvin Bush.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Marvin_Bush onto:parent ?x . ?x prop:children ?uri . }
lcquad
List the awards received of the person whose child is Daine Disney Miller?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:children <http://dbpedia.org/resource/Diane_Disney_Miller> . ?x onto:award ?uri . ?x rdf:type onto:Person}
lcquad
In which country is the Baku puppet Theater located which is also the birth palce of Anar Salmanov ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Baku_Puppet_Theatre onto:locationCountry ?uri. res:Anar_Salmanov prop:placeOfBirth ?uri}
lcquad
List down all the cast members of Tony n' Tina's Wedding ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tony_n'_Tina's_Wedding> prop:starring ?uri }
lcquad
What is the airline company has its headquarters in Dublin Airport?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:headquarters res:Dublin_Airport }
lcquad
What was the result of Operation Autumn Clouds ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Operation_Autumn_Clouds prop:result ?uri }
lcquad
Where was the Temptation Waits recorded?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Temptation_Waits onto:recordedIn ?uri }
lcquad
Some movies whose screenplay is done by american born people?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:United_States . ?uri prop:screenplay ?x . }
lcquad
List the relatives of clay Aiken ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:relatives res:Clay_Aiken . }
lcquad
List the relatives of the children of Jon Voight ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jon_Voight prop:children ?x . ?x onto:relative ?uri . }
lcquad
What is the resting place of the children of Bruce Lee ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee prop:children ?x . ?x onto:restingPlace ?uri . }
lcquad
List the colonel with branch as Militia ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:branch <http://dbpedia.org/resource/Militia> . ?uri prop:rank <http://dbpedia.org/resource/Colonel_(United_States)> . }
lcquad
List all areas served by the radio station serving South carolina ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:area <http://dbpedia.org/resource/South_Carolina> . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}
lcquad
Which TV show's theme was composed by a band in which Todd Huth used to perform?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember <http://dbpedia.org/resource/Todd_Huth> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Which work is both Neil Cross and Lars Pearson both known for ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Neil_Cross onto:notableWork ?uri. res:Lars_Pearson onto:notableWork ?uri . }
lcquad
What is the state of origin of Abbas Jafri ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Abbas_Jafri onto:stateOfOrigin ?uri }
lcquad
which award has been won by Claudia Moro?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Claudia_Moro prop:title ?uri }
lcquad
What religion did the spouse of Richie Aprile follow?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Richie_Aprile prop:spouse ?x . ?x onto:religion ?uri . }
lcquad
Which river has its roots in Baikal Mountains?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Baikal_Mountains }
lcquad
What is the country whose leader was once Valentina Matviyenko?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:leader res:Valentina_Matviyenko . }
lcquad
Is Ingo Steuer the formercoach of Stanislav Morozov?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Stanislav_Morozov prop:formercoach res:Ingo_Steuer }
lcquad
Whose units are responsible for close air support?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:role res:Close_air_support . ?uri onto:militaryUnit ?x . }
lcquad
Which university has chancellor as Nicholas S. Zeppos?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:chancellor <http://dbpedia.org/resource/Nicholas_S._Zeppos> . ?uri rdf:type onto:University}
lcquad
Is Liang Chow the headcoach of Shawn Johnson?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Shawn_Johnson prop:headcoach res:Liang_Chow }
lcquad
Name the key people of the non-profit organisations whose one of the key person is Lesley-Anne knight ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople <http://dbpedia.org/resource/Lesley-Anne_Knight> . ?x prop:keyPeople ?uri . }
lcquad
What is the address of Federal Reserve Bank Building?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> prop:address ?uri }
lcquad
What are the kind of games one can play on windows?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform <http://dbpedia.org/resource/Microsoft_Windows> . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}
lcquad
What is the location country of the bank whose successor is Mauritius Bank ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:successor <http://dbpedia.org/resource/Mauritius_Bank> . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank}
lcquad
Which artists have co-starred with Kris Kristofferson?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs <http://dbpedia.org/resource/Kris_Kristofferson> . ?uri rdf:type onto:Artist}
lcquad
List the software using C++ as programming language and licence is Software as a service?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage <http://dbpedia.org/resource/C++> . ?uri onto:license <http://dbpedia.org/resource/Software_as_a_service> . ?uri rd...
lcquad
Which are the major hubs of airline which operates the Menora Tunnel?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Menora_Tunnel> prop:operator ?x . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}
lcquad
List the countries through which European rout E39 and E8 passes ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:European_route_E39 onto:county ?uri. res:European_route_E8 onto:county ?uri . }
lcquad
Who are the writer of the singles whose music genre is Rhythm and blues ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:genre <http://dbpedia.org/resource/Rhythm_and_blues> . ?x onto:writer ?uri . ?x rdf:type onto:Single}
lcquad
Which country does the current team of Darren McNamara belong to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Darren_McNamara prop:currentTeam ?x . ?x onto:locationCountry ?uri . }
lcquad
Name the mountain which belongs to Sierra Nevada range and is located in Inyo National Forest?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri onto:locatedInArea <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri rdf:type onto:Mountain}
lcquad
What are the awards won by the film editor of The Search?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> onto:editing ?x . ?x prop:awards ?uri . }
lcquad
Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> onto:servingRailwayLine ?uri. <http://dbpedia.org/resource/Nina_Vislova> prop:placeOfBirth ?uri}
lcquad
Who coached the Marquette golden eagles men team in 09 to 10 and then again in 13 to 14 ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2009–10_Marquette_Golden_Eagles_men's_basketball_team> onto:coach ?uri. <http://dbpedia.org/resource/2013–14_Marquette_Golden_Eagles_men's_basketball_team> onto:coach ?uri . }
lcquad
Give me some series related to the one which had Yasmin Paige in them.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:starring <http://dbpedia.org/resource/Yasmin_Paige> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Is James Wong Howe the cinematographer of Behave Yourself?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Behave_Yourself!> prop:cinematography <http://dbpedia.org/resource/James_Wong_Howe> }
lcquad
Does Heydar mean the same as a lion?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Heydar prop:meaning res:Lion }
lcquad
Which associate musical artist of Carolyn Dennis is also the composer of Motorpsycho Nitemare ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Carolyn_Dennis onto:associatedMusicalArtist ?uri. res:Motorpsycho_Nitemare prop:composer ?uri}
lcquad
Count the number of shows whose creators are Jerry Seinfeld and Larry David?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:creator <http://dbpedia.org/resource/Jerry_Seinfeld> . ?uri onto:creator <http://dbpedia.org/resource/Larry_David>}
lcquad
What is the state of the settlement, which is the sub assembly of Mohamedia, Tunisia ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mohamedia,_Tunisia> onto:isPartOf ?x . ?x onto:country ?uri . }
lcquad
Name the rivers in the hudson highlands state parts?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Hudson_Highlands_State_Park prop:river ?uri }
lcquad
How many TV shows have executive producer as Steven Moffat ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:executiveProducer <http://dbpedia.org/resource/Steven_Moffat> . ?uri rdf:type onto:TelevisionShow}
lcquad
Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit <http://dbpedia.org/resource/USS_Kittiwake_(ASR-13)> . ?uri prop:constituency <http://dbpedia.org/resource/Castro_District,...
lcquad
Which writer of the Snaman is also the writer of Neverwher ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Sandman_(Vertigo)> prop:writers ?uri. <http://dbpedia.org/resource/Neverwhere_(radio_play)> onto:writer ?uri}
lcquad
How many relatives are there of veterans of operation Barbarossa?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle <http://dbpedia.org/resource/Operation_Barbarossa> . ?x onto:relation ?uri . }
lcquad
Which famous political figures are relatives to George Madison?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:George_Madison onto:relation ?uri }
lcquad
Which organisation has superintendent as Lieutenant general (United States)?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:superintendent <http://dbpedia.org/resource/Lieutenant_general_(United_States)> . ?uri rdf:type onto:Organisation}
lcquad
Who all have been in bands which have recorded their work in the Electric Lady Studios?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn <http://dbpedia.org/resource/Electric_Lady_Studios> . ?uri prop:associatedActs ?x . ?uri rdf:type onto:Person}
lcquad
What religion is practiced by Hirunika Premachandra, and many others south asians in Hong Kong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:South_Asians_in_Hong_Kong onto:religion ?uri. res:Hirunika_Premachandra prop:religion ?uri . }
lcquad
Was Kevin Jonas a part of Jonas brothers?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Jonas_Brothers onto:formerBandMember res:Kevin_Jonas }
lcquad
Who did the associated act which is a Peter Frampton production ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Peter_Frampton . ?uri prop:associatedActs ?x . }
lcquad
List the shows whose company's successor is Amblin Television.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:successor <http://dbpedia.org/resource/Amblin_Television> . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
How many shows are made by the channel whose predecessor was the Comedy Channel?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:predecessor <http://dbpedia.org/resource/The_Comedy_Channel_(United_States)> . ?uri prop:network ?x . ?uri rdf:type onto:Televisi...
lcquad
List of people who were the first one to ascend a mountain in the Cathedral range?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange <http://dbpedia.org/resource/Cathedral_Range> . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain}
lcquad
Give me the mascot of the military unit in which Stewart Bovell served?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stewart_Bovell> onto:militaryBranch ?x . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}
lcquad
Which company owns GetTV and Hypnotize minds ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:GetTV prop:parent ?uri. res:Hypnotize_Minds prop:parent ?uri . }
lcquad
In which wars did commanders born in Indochina fight?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Indochina> . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}
lcquad
Who has written the mary poppins musical?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mary_Poppins_(musical)> onto:author ?uri }
lcquad
Which newspaper is owned by people living in Oslo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:location res:Oslo . ?uri prop:owners ?x . }
lcquad
Who made the engine whose predecessor is the SHO V6?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:predecessor <http://dbpedia.org/resource/Ford_SHO_V6_engine> . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine}
lcquad
For how many different teams have Ontarians been drafted ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth <http://dbpedia.org/resource/Ontario> . ?x onto:draftTeam ?uri . }
lcquad
Name the university of Alexandre Tichonov ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri }
lcquad
In which countries can i find broadcasted TV in southeast asia?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:broadcastArea <http://dbpedia.org/resource/Southeast_Asia> . ?x prop:country ?uri . ?x rdf:type onto:TelevisionStation}
lcquad
Over how many cities did the Bellaton MMA, Season 11 take place?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Bellator_MMA:_Season_Eleven> prop:city ?uri . }
lcquad
Whose academic advisor works at the St George's Hospital?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions <http://dbpedia.org/resource/St_George's_Hospital> . ?uri onto:academicAdvisor ?x . }
lcquad
Count the number of people who graduated from universities affiliated with the NCAA.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri prop:education ?x . ?uri rdf:type onto:Pe...
lcquad
Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:battle res:Siege_of_Fort_Recovery . ?uri prop:governor res:Charles_Willing_Byrd . }
lcquad
How many characters were made by Paul Dini?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creators <http://dbpedia.org/resource/Paul_Dini> . }
lcquad
What are the name of the casualties affected by shooting rampage of Eric Harris and Dylan Klebold?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:deathCause <http://dbpedia.org/resource/Eric_Harris_and_Dylan_Klebold> . ?uri rdf:type onto:Person}
lcquad
How many molluscas are there whose families are Buccinidae and Buccinoidea?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:family <http://dbpedia.org/resource/Buccinidae> . ?uri onto:family <http://dbpedia.org/resource/Buccinoidea>}
lcquad
List the newspapers which has headquarters in Stockholm?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:headquarters <http://dbpedia.org/resource/Stockholm> . ?uri rdf:type onto:Newspaper}
lcquad
List the relegion of tani University which is also the life stance of udit Raj ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ōtani_University prop:affiliation ?uri. res:Udit_Raj onto:religion ?uri}
lcquad
Was David Gilmour a former member of Pink Floyd?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Pink_Floyd onto:formerBandMember res:David_Gilmour }
lcquad
what are some players of England national football team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam res:England_national_football_team }
lcquad
Which genre of books does the writer of The Many Hands write?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Many_Hands prop:author ?x . ?x onto:genre ?uri . }
lcquad