instruction
stringclasses 1
value | input
stringlengths 1
655
| output
stringlengths 47
392
|
---|---|---|
Generate a SPARQL query that returns the answer of the following question.
|
Where is the administrative territorial entity of Lancashire that ended in April of 1994?
|
SELECT ?obj WHERE { wd:/Lancashire/ p:/located in the administrative territorial entity/ ?s . ?s ps:/located in the administrative territorial entity/ ?obj . ?s pq:/end time/ ?x filter(contains(YEAR(?x),'1994')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Fredrich Bessel win the Gold Medal of the Royal Astronomical Society?
|
SELECT ?value WHERE { wd:/Friedrich Bessel/ p:/award received/ ?s . ?s ps:/award received/ wd:/Gold Medal of the Royal Astronomical Society/ . ?s pq:/point in time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What subject in the history of Wisconsin tells of the division of St. Croix County?
|
SELECT ?answer WHERE { wd:/history of Wisconsin/ wdt:/facet of/ ?answer . ?answer wdt:/contains the administrative territorial entity/ wd:/St. Croix County/}
|
Generate a SPARQL query that returns the answer of the following question.
|
"What is the Alumni of Marvin Hamlisch, that has Carnegie Classification of Institutions of Higher Education cultivating Arts & Sciences plus professions, and some graduate coexistence?"
|
SELECT ?answer WHERE { wd:/Marvin Hamlisch/ wdt:/educated at/ ?answer . ?answer wdt:/Carnegie Classification of Institutions of Higher Education/ wd:/arts & sciences plus professions, some graduate coexistence/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Eddie the Head is a member of what hardcore musical group who's title has "iron" in the name?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/heavy metal band/ . ?sbj wdt:/mascot/ wd:/Eddie the Head/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'iron')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What county in England shares a border with Hampshire?
|
select distinct ?sbj where { ?sbj wdt:/shares border with/ wd:/Hampshire/ . ?sbj wdt:/instance of/ wd:/ceremonial county of England/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What political conspiracy was Guy Fawkes the leader of?
|
select distinct ?obj where { wd:/Guy Fawkes/ wdt:/conflict/ ?obj . ?obj wdt:/instance of/ wd:// }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is it true that the moisture absorption of the polycarbonate equals to 0.24?
|
ASK WHERE { wd:/polycarbonate/ wdt:/moisture absorption/ ?obj filter(?obj = 0.24) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is {used for treatment} of {capable of inhibiting or preventing pathological process} of {methenamine hippurate} ?
|
SELECT ?answer WHERE { wd:/methenamine hippurate/ wdt:/medical condition treated/ ?X . ?X wdt:/drug or therapy used for treatment/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
When was Leo XIII's final year as nuncio?
|
SELECT ?value WHERE { wd:/Leo XIII/ p:/position held/ ?s . ?s ps:/position held/ wd:/apostolic nuncio/ . ?s pq:/end time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Tashkent become the capital of Uzbekistan?
|
SELECT ?value WHERE { wd:/Tashkent/ p:/country/ ?s . ?s ps:/country/ wd:/Uzbekistan/ . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What start time does Cornelis Drebbel have for working in Haarlem?
|
SELECT ?value WHERE { wd:/Cornelis Drebbel/ p:/work location/ ?s . ?s ps:/work location/ wd:/Haarlem/ . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is treated by isoflurane?
|
SELECT ?answer WHERE { wd:/isoflurane/ wdt:/medical condition treated/ ?X . ?X wdt:/drug or therapy used for treatment/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the Ingredients of Grober Auerberg with measurements?
|
SELECT ?answer WHERE { wd:/Großer Auerberg/ wdt:/mountain range/ ?X . ?X wdt:/made from material/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
How many parent astronomical conditions are for the {Large Magellanic Cloud} ?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/parent astronomical body/ wd:/Large Magellanic Cloud/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
How many flowes possess the color orange?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/flower color/ wd:/orange/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the diplomatic relation of the land of Ujjain?
|
SELECT ?answer WHERE { wd:/Ujjain/ wdt:/country/ ?X . ?X wdt:/diplomatic relation/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Name someone who graduated from McGill University
|
select distinct ?sbj where { ?sbj wdt:/affiliation/ wd:/McGill University/ . ?sbj wdt:/instance of/ wd:/human/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
where is the filming location and narrative location of Full_Metal_Jacket?which
|
SELECT ?ans_1 ?ans_2 WHERE { wd:/Full Metal Jacket/ wdt:/filming location/ ?ans_1 . wd:/Full Metal Jacket/ wdt:/narrative location/ ?ans_2 }
|
Generate a SPARQL query that returns the answer of the following question.
|
"Which is {portrait of} of {A Sunday Afternoon on the Island of La Grande Jatte}, which has {sound emitted} is {female voice} ?"
|
SELECT ?answer WHERE { wd:/A Sunday Afternoon on the Island of La Grande Jatte/ wdt:/depicts/ ?answer . ?answer wdt:/produced sound/ wd:/female voice/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What causes Higgs boson to have a mean lifetime of 1e-05?
|
SELECT ?value WHERE { wd:/Higgs boson/ p:/mean lifetime/ ?s . ?s ps:/mean lifetime/ ?x filter(contains(?x,'1e-05')) . ?s pq:/criterion used/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the headquarters of Ghent University, whose telephone prefix is 09?
|
SELECT ?answer WHERE { wd:/Ghent University/ wdt:/headquarters location/ ?answer . ?answer wdt:/local dialing code/ ?x FILTER(contains(?x,'09'))}
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the nominal GDP per capita of Poland less than 15065.46?
|
ASK WHERE { wd:/Poland/ wdt:/nominal GDP per capita/ ?obj filter(?obj < 15065.46) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the region of Perth has wards such as the Shire of Cunderin?
|
SELECT ?answer WHERE { wd:/Perth/ wdt:/located in the administrative territorial entity/ ?answer . ?answer wdt:/contains the administrative territorial entity/ wd:/Shire of Cunderdin/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What award did Arthur Rubinstein win on 1/1/1961?
|
SELECT ?obj WHERE { wd:/Arthur Rubinstein/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1961')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the namesake of the Planck constant, who was a member of the Licean Academy?
|
SELECT ?answer WHERE { wd:/Planck constant/ wdt:/named after/ ?answer . ?answer wdt:/member of/ wd:/Lincean Academy/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the record label for The Black Eyes Peas and what are they named after?
|
SELECT ?ans_1 ?ans_2 WHERE { wd:/Black Eyed Peas/ wdt:/record label/ ?ans_1 . wd:/Black Eyed Peas/ wdt:/named after/ ?ans_2 }
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me national association football team whose name has the word team in it.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/national association football team/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'team')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is Rabies medical treatment and the health specialty?
|
SELECT ?ans_1 ?ans_2 WHERE { wd:/rabies/ wdt:/possible treatment/ ?ans_1 . wd:/rabies/ wdt:/health specialty/ ?ans_2 }
|
Generate a SPARQL query that returns the answer of the following question.
|
How many categories are there for women's sports?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/competition class/ wd:/women's sports/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the performer and the present in work of Satan?
|
SELECT ?ans_1 ?ans_2 WHERE { wd:/Satan/ wdt:/performer/ ?ans_1 . wd:/Satan/ wdt:/present in work/ ?ans_2 }
|
Generate a SPARQL query that returns the answer of the following question.
|
What award did Ian Thorpe received for swimming at the 2000 Summer Olympics – Men's 4 × 100 metre medley relay?
|
SELECT ?value WHERE { wd:/Ian Thorpe/ p:/participant in/ ?s . ?s ps:/participant in/ wd:/swimming at the 2000 Summer Olympics – men's 4 × 100 metre medley relay/ . ?s pq:/award received/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the carbon footprint of the iPhone XR equal to 67?
|
ASK WHERE { wd:/iPhone XR/ wdt:/carbon footprint/ ?obj filter(?obj = 67) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is Shanghai twinned administrative body Basel and Porto?
|
ASK WHERE { wd:/Shanghai/ wdt:/twinned administrative body/ wd:/Basel/ . wd:/Shanghai/ wdt:/twinned administrative body/ wd:/Porto/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me unit of area whose name has the word wente in it.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/unit of area/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'wente')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the athletic conference which start with the letter n
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/athletic conference/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'n')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
How many tracklists are there for nevermind?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/Nevermind/ wdt:/tracklist/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
what are the chemical property that starts with t
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/chemical property/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Who won the Grammy Award for best rap/sung performance with Eminem?
|
SELECT ?value WHERE { wd:/Eminem/ p:/award received/ ?s . ?s ps:/award received/ wd:/Grammy Award for Best Melodic Rap Performance/ . ?s pq:/together with/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is Haj Amin al-Husseini's name in their official first language?
|
SELECT ?answer WHERE { wd:/Mohammed Amin al-Husseini/ wdt:/native language/ ?X . ?X wdt:/native label/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me the regional organization that shares borders with South Sudan and contains the word arab in it's name?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/regional organization/ . ?sbj wdt:/shares border with/ wd:/South Sudan/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'arab')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
How many artists made the storyboards for The Lion King?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/The Lion King/ wdt:/storyboard artist/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the Giant Magellan telescope's focal length equal to 14.4?
|
ASK WHERE { wd:/The Giant Magellan Telescope/ wdt:/focal length/ ?obj filter(?obj = 14.4) }
|
Generate a SPARQL query that returns the answer of the following question.
|
which office building has the highest floors below ground?
|
select ?ent where { ?ent wdt:/instance of/ wd:/office building/ . ?ent wdt:/floors below ground/ ?obj } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
Does the attendance of the 19th Grey Cup equal 4089.6?
|
ASK WHERE { wd:/19th Grey Cup/ wdt:/attendance/ ?obj filter(?obj = 4089.6) }
|
Generate a SPARQL query that returns the answer of the following question.
|
In the tetrahedral group, does the cardinality of the group equal to 14.4?
|
ASK WHERE { wd:/tetrahedral group/ wdt:/group cardinality/ ?obj filter(?obj = 14.4) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Where is Islamabad located ?
|
select distinct ?obj where { wd:/Islamabad/ wdt:/geography of topic/ ?obj . ?obj wdt:/instance of/ wd:/geography of geographic location/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the measurements for the mental depression disease ?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/mental depression/ wdt:/measurement scale/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me machine learning whose name has the word ml in it.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/machine learning/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'ml')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What award Singin' in the Rain received in 1989-1-1?
|
SELECT ?obj WHERE { wd:/Singin' in the Rain/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1989')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Does Odo of Scarpone hold a directorial position?
|
SELECT ?answer WHERE { wd:/Odo of Scarpone/ wdt:/position held/ ?X . ?X wdt:/organization directed by the office or position/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who are the publishers for Civilization?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/Civilization/ wdt:/publisher/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
What was the population of Royal National Park, at the time of the 2016 Australian census?
|
SELECT ?obj WHERE { wd:/Royal National Park/ p:/population/ ?s . ?s ps:/population/ ?obj . ?s pq:/determination method/ wd:// }
|
Generate a SPARQL query that returns the answer of the following question.
|
What location in the administrative territorial entity of Vilnuis is the start time of 1413-0-0?
|
SELECT ?obj WHERE { wd:/Vilnius/ p:/located in the administrative territorial entity/ ?s . ?s ps:/located in the administrative territorial entity/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1413')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
How many highest point are scored by Ben Nevis?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/highest point/ wd:/Ben Nevis/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the defined daily dose of Povidone-iodine equal to 0.24?
|
ASK WHERE { wd:/povidone-iodine/ wdt:/defined daily dose/ ?obj filter(?obj = 0.24) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the name of the lake which has the greatest perimeter and also has a moderate WFD Ecological status?
|
select ?ent where { ?ent wdt:/instance of/ wd:/lake water body/ . ?ent wdt:/perimeter/ ?obj . ?ent wdt:/WFD Ecological status/ wd:/WFD Ecological status: Moderate status/ } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
Which inferior planet has the longest synodic period?
|
select ?ent where { ?ent wdt:/instance of/ wd:/inferior planet/ . ?ent wdt:/synodic period/ ?obj } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
What is warning of Shahada, that has Women in Red banner is Arabic WV banner.jpg?
|
SELECT ?answer WHERE { wd:/Shahada/ wdt:/language of work or name/ ?answer . ?answer wdt:/page banner/ ?x FILTER(contains(?x,'Arabic WV banner.jpg'))}
|
Generate a SPARQL query that returns the answer of the following question.
|
In which year Lithuania has the following flag ?
|
SELECT ?value WHERE { wd:/Lithuania/ p:/flag image/ ?s . ?s ps:/flag image/ ?x filter(contains(?x,'Flag of Lithuania 1918-1940.png')) . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
How many leagues are there for Chelsea F.C.
|
SELECT (COUNT(?obj) AS ?value ) { wd:/Chelsea F.C./ wdt:/league/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
what is hypothetical protein ecia139-4120 habitat of found in species?
|
SELECT ?answer WHERE { wd:/hypothetical protein ECIAI39_4120/ wdt:/found in taxon/ ?X . ?X wdt:/habitat/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who gave the {human population} of {continent} of {ghetto in Nazi-occupied Europe} ?
|
SELECT ?answer WHERE { wd:/ghetto in Nazi-occupied Europe/ wdt:/continent/ ?X . ?X wdt:/population/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me religious concept whose name has the word yojana in it.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/religious concept/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'yojana')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the neurological symptoms of influenza?
|
SELECT ?answer WHERE { wd:/influenza/ wdt:/symptoms and signs/ ?answer . ?answer wdt:/health specialty/ wd:/neurology/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the moisture absorption of the polycarbonate equal to 0.1?
|
ASK WHERE { wd:/polycarbonate/ wdt:/moisture absorption/ ?obj filter(?obj = 0.1) }
|
Generate a SPARQL query that returns the answer of the following question.
|
When was the end of Ptolemy I Soter's reign as pharaoh?
|
SELECT ?value WHERE { wd:/Ptolemy I Soter/ p:/noble title/ ?s . ?s ps:/noble title/ wd:/pharaoh/ . ?s pq:/end time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the source of taxon for opium
|
select distinct ?sbj where { ?sbj wdt:/this taxon is source of/ wd:/opium/ . ?sbj wdt:/instance of/ wd:/taxon/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What was William Butler Yeats nominated for in the year 1918?
|
SELECT ?obj WHERE { wd:/William Butler Yeats/ p:/nominated for/ ?s . ?s ps:/nominated for/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1918')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the television series episode which has Bruce Willis as cast member?
|
select distinct ?sbj where { ?sbj wdt:/cast member/ wd:/Bruce Willis/ . ?sbj wdt:/instance of/ wd:/television series episode/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the safety classification and labelling of the occupational carcinogen that starts with "b"?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/occupational carcinogen/ . ?sbj wdt:/safety classification and labelling/ wd:/Regulation (EC) No. 1272/2008/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'b')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Do {Meat_Loaf} {record label} is {Epic Records} and {Bronze Records} ?
|
ASK WHERE { wd:/Meat Loaf/ wdt:/record label/ wd:/Epic Records/ . wd:/Meat Loaf/ wdt:/record label/ wd:/Bronze/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What gene is associated with colorectal cancer by a genome-wide association study?
|
SELECT ?obj WHERE { wd:/colorectal cancer/ p:/genetic association/ ?s . ?s ps:/genetic association/ ?obj . ?s pq:/determination method/ wd:/genome-wide association study/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Was Jared Leto nominated for the Academy Award for Best Picture?
|
ASK WHERE { wd:/Jared Leto/ wdt:/nominated for/ wd:/Academy Award for Best Picture/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the major works of Marin Alsop's supervisor?
|
SELECT ?answer WHERE { wd:/Marin Alsop/ wdt:/student of/ ?X . ?X wdt:/notable work/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What single is part of hard rocks current work?
|
select distinct ?obj where { wd:/hard rock/ wdt:/present in work/ ?obj . ?obj wdt:/instance of/ wd:/single/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Name the psychoactive drug made from Papaver somniferum that starts with letter O
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/psychoactive drug/ . ?sbj wdt:/natural product of taxon/ wd:/Papaver somniferum/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'o')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Is Schutzstaffel's subsidiary Reich Main Security Office and 21st Waffen Mountain division of the SS Skanderbeg?
|
ASK WHERE { wd:/Schutzstaffel/ wdt:/has subsidiary/ wd:/Reich Main Security Office/ . wd:/Schutzstaffel/ wdt:/has subsidiary/ wd:/21st Waffen Mountain Division of the SS Skanderbeg/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
what is geological epoch starts with w
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/epoch/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the MASL of the place of the death of Ibn Taymiyyah?
|
SELECT ?answer WHERE { wd:/Ibn Taymiyyah/ wdt:/place of death/ ?X . ?X wdt:/place of death/44 ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What award did Charles Antony Richard Hoare receive in 1990?
|
SELECT ?obj WHERE { wd:/Tony Hoare/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1990')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Oskar Lafontaine become the head of the government of Saarland?
|
SELECT ?value WHERE { wd:/Saarland/ p:/head of government/ ?s . ?s ps:/head of government/ wd:/Oskar Lafontaine/ . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the population of Port Said Governorate that was determined by census?
|
SELECT ?obj WHERE { wd:/Port Said Governorate/ p:/population/ ?s . ?s ps:/population/ ?obj . ?s pq:/determination method/ wd:/census/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Where was Christian liturgy founded?
|
SELECT ?answer WHERE { wd:/Christian liturgy/ wdt:/religion or worldview/ ?X . ?X wdt:/location of formation/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Kliningrad split from Baranovichi?
|
SELECT ?value WHERE { wd:/Kaliningrad/ p:/twinned administrative body/ ?s . ?s ps:/twinned administrative body/ wd:/Baranavichy/ . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Where was Alexander I of Russia buried on 1826-3-25?
|
SELECT ?obj WHERE { wd:/Alexander I of Russia/ p:/place of burial/ ?s . ?s ps:/place of burial/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1826')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
How much is stated in Zaporizhzhya Oblast?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/Zaporizhzhia Oblast/ wdt:/stated in/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the safety classification and labelling of sodium hydroxide that is NFPA Health rating 2?
|
SELECT ?obj WHERE { wd:/sodium hydroxide/ p:/safety classification and labelling/ ?s . ?s ps:/safety classification and labelling/ ?obj . ?s pq:/NFPA Health/ ?x filter(contains(?x,'2')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
when did headquarters location of that is located at street address is one cnn center
|
SELECT ?obj WHERE { wd:/CNN/ p:/headquarters location/ ?s . ?s ps:/headquarters location/ ?obj . ?s pq:// ?x filter(contains(?x,'One CNN Center')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What was the population of Galicia in Jan. 1st, 2018
|
SELECT ?obj WHERE { wd:/Galicia/ p:/population/ ?s . ?s ps:/population/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'2018')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me building material whose name has the word zuschlagsoff in it.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/building material/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zuschlagstoff')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Which memorial cemetery has the largest number of graves out of all memorial cemeteries?
|
select ?ent where { ?ent wdt:/instance of/ wd:/memorial cemetery/ . ?ent wdt:/number of graves/ ?obj . ?ent wdt:/instance of/ wd:/memorial cemetery/ } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
What is not the same as the globe, whose time zone is Mountain Time Zone?
|
SELECT ?answer WHERE { wd:/globe/ wdt:/different from/ ?answer . ?answer wdt:/located in time zone/ wd:/Mountain Time Zone/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the {film} for {screenwriter} of {Ang Lee}
|
select distinct ?sbj where { ?sbj wdt:/screenwriter/ wd:/Ang Lee/ . ?sbj wdt:/instance of/ wd:/film/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the etymology of Lenz's law, that has crafted the university teacher?
|
SELECT ?answer WHERE { wd:/Lenz's law/ wdt:/named after/ ?answer . ?answer wdt:/occupation/ wd:/university teacher/}
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Amy Adams receive an award at the Independent Spirit Awards?
|
SELECT ?value WHERE { wd:/Amy Adams/ p:/award received/ ?s . ?s ps:/award received/ wd:/Independent Spirit Awards/ . ?s pq:/point in time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
name a textile fibre made of Bombyx mori that starts with letter S
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:// . ?sbj wdt:/natural product of taxon/ wd:/Bombyx mori/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Which player has consequence of Serbian Nationality?
|
SELECT ?answer WHERE { wd:/Serbian nationalism/ wdt:/has effect/ ?X . ?X wdt:/participant/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is Charles Arnold Anderson's academic subject of expertise?
|
SELECT ?answer WHERE { wd:/Charles Arnold Anderson/ wdt:/field of work/ ?X . ?X wdt:/is the study of/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which city is the twinned administrative body of Cardiff?
|
select distinct ?obj where { wd:/Cardiff/ wdt:/twinned administrative body/ ?obj . ?obj wdt:/instance of/ wd:/city/ }
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.