instruction
stringclasses
1 value
input
stringlengths
1
655
output
stringlengths
47
392
Generate a SPARQL query that returns the answer of the following question.
when is the {end time} for {Johnny Hallyday} who has {spouse} as {Babeth Étienne} ?
SELECT ?value WHERE { wd:/Johnny Hallyday/ p:/spouse/ ?s . ?s ps:/spouse/ wd:/Babeth Étienne/ . ?s pq:/end time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What awards has champion Jack Nicholson won?
SELECT ?answer WHERE { wd:/Jack Nicholson/ wdt:/award received/ ?X . ?X wdt:/winner/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Was Michael J. Fox's place of birth in Edmonton?
ASK WHERE { wd:/Michael J. Fox/ wdt:/place of birth/ wd:/Edmonton/ }
Generate a SPARQL query that returns the answer of the following question.
When did Johannes Brahms win the Bavarian Maximilian Order for Science and Art Award?
SELECT ?value WHERE { wd:/Johannes Brahms/ p:/award received/ ?s . ?s ps:/award received/ wd:/Bavarian Maximilian Order for Science and Art/ . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Does the Scoville grade of the Carolina Reaper equal 1255440.0
ASK WHERE { wd:/Carolina Reaper/ wdt:/Scoville grade/ ?obj filter(?obj = 1255440.0) }
Generate a SPARQL query that returns the answer of the following question.
WHICH IS THE STATE OF AUSTRALIA THAT STARTS WIH V
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/state of Australia/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'v')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
In which World War did the power known as the Allies participate?
select distinct ?sbj where { ?sbj wdt:/participant/ wd:/Allies of the Second World War/ . ?sbj wdt:/instance of/ wd:/world war/ }
Generate a SPARQL query that returns the answer of the following question.
Who paints a broken role model?
SELECT ?answer WHERE { wd:/Breaking/ wdt:/creator/ ?X . ?X wdt:/influenced by/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What rebellion contains the work zollunruhen in it's name?
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/rebellion/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zollunruhen')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
which binary relation starts with the letter s
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/binary relation/ . ?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.
What is the University board for the subsidary of the Georgia Institute of Technology.
select distinct ?sbj where { ?sbj wdt:/has subsidiary/ wd:/Georgia Institute of Technology/ . ?sbj wdt:/instance of/ wd:/state university system/ }
Generate a SPARQL query that returns the answer of the following question.
How much money did Sully Prudhomme win when they received the Nobel Prize in Literature?
SELECT ?value WHERE { wd:/Sully Prudhomme/ p:/award received/ ?s . ?s ps:/award received/ wd:/Nobel Prize in Literature/ . ?s pq:/prize money/ ?value}
Generate a SPARQL query that returns the answer of the following question.
When did classical antiquity become a nature of ststement?
SELECT ?obj WHERE { wd:/classical antiquity/ p:/start time/ ?s . ?s ps:/start time/ ?obj . ?s pq:/nature of statement/ wd:/disputed/ }
Generate a SPARQL query that returns the answer of the following question.
Is the refractive index of silver chloride equal 1.9803?
ASK WHERE { wd:/silver chloride/ wdt:/refractive index/ ?obj filter(?obj = 1.9803) }
Generate a SPARQL query that returns the answer of the following question.
Which is the death place in Hattie Jacques having a sister city of Buenos Aires?
SELECT ?answer WHERE { wd:/Hattie Jacques/ wdt:/place of death/ ?answer . ?answer wdt:/twinned administrative body/ wd:/Buenos Aires/}
Generate a SPARQL query that returns the answer of the following question.
What is the label of The Armed Man; a musical group that belongs to the parent company "Universal Music Group?"
SELECT ?answer WHERE { wd:/The Armed Man – A Mass for Peace/ wdt:/record label/ ?answer . ?answer wdt:/parent organization/ wd:/Universal Music Group/}
Generate a SPARQL query that returns the answer of the following question.
Who is the {disease} for {symptoms} of {delusion?
select distinct ?sbj where { ?sbj wdt:/symptoms and signs/ wd:/delusion/ . ?sbj wdt:/instance of/ wd:/disease/ }
Generate a SPARQL query that returns the answer of the following question.
Who is the daughter of Guinevere's wife?
SELECT ?answer WHERE { wd:/Guinevere/ wdt:/spouse/ ?X . ?X wdt:/mother/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Who is the developer of Stirling engine whose died in Galston
SELECT ?answer WHERE { wd:/Stirling engine/ wdt:/discoverer or inventor/ ?answer . ?answer wdt:/place of death/ wd:/Galston/}
Generate a SPARQL query that returns the answer of the following question.
Who is the person in the head of state of Tokugawa Shogunata?
select distinct ?obj where { wd:/Tokugawa shogunate/ wdt:/head of state/ ?obj . ?obj wdt:/instance of/ wd:/human/ }
Generate a SPARQL query that returns the answer of the following question.
Name the building by the engineer Arup with the least amount of elevators.
select ?ent where { ?ent wdt:/instance of/ wd:/building complex/ . ?ent wdt:/number of elevators/ ?obj . ?ent wdt:/structural engineer/ wd:/Arup/} ORDER BY ASC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
How many different ways can you ingest acetaminophen?
SELECT (COUNT(?obj) AS ?value ) { wd:/paracetamol/ wdt:/route of administration/ ?obj }
Generate a SPARQL query that returns the answer of the following question.
Is it true that the valency of monotransitive verb equals to 2?
ASK WHERE { wd:/monotransitive verb/ wdt:/valency/ ?obj filter(?obj = 2) }
Generate a SPARQL query that returns the answer of the following question.
who doctoral student of advisor of Johannes diderik van der waals ?
SELECT ?answer WHERE { wd:/Johannes Diderik van der Waals/ wdt:/doctoral advisor/ ?X . ?X wdt:/doctoral student/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
How many Kings are for Louis the Pious?
SELECT (COUNT(?obj) AS ?value ) { wd:/Louis the Pious/ wdt:/noble title/ ?obj }
Generate a SPARQL query that returns the answer of the following question.
When did Madrid have a population of 3.21327e+06?
SELECT ?value WHERE { wd:/Madrid/ p:/population/ ?s . ?s ps:/population/ ?x filter(contains(?x,'3.21327e+06')) . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Mariano Rajoy is a member of what political party?
select distinct ?obj where { wd:/Mariano Rajoy/ wdt:/member of political party/ ?obj . ?obj wdt:/instance of/ wd:/political party/ }
Generate a SPARQL query that returns the answer of the following question.
WHICH IS THE SPECIALIST OF THE PART OF WORK OF COMPARISON OF QUANTUM DOT BIODISTRIBUTION WITH A BLOOD FLOW LIMITED PHYSIOLOGICALLY BASED PHARMACEOKINETIC MODEL?
SELECT ?answer WHERE { wd:/Comparison of quantum dot biodistribution with a blood-flow-limited physiologically based pharmacokinetic model./ wdt:/published in/ ?X . ?X wdt:/field of work/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
"What is the label of Rick Astley whose owner is Sony Corporation of America?"
SELECT ?answer WHERE { wd:/Rick Astley/ wdt:/record label/ ?answer . ?answer wdt:/owned by/ wd:/Sony Corporation of America/}
Generate a SPARQL query that returns the answer of the following question.
WHO IS THE COMPETITOR OF BARBARA HEPWORTH?
SELECT ?answer WHERE { wd:/Barbara Hepworth/ wdt:/participant in/ ?X . ?X wdt:/participant/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Which party is headed by Anabella Azin?
SELECT ?answer WHERE { wd:/Anabella Azín/ wdt:/member of political party/ ?X . ?X wdt:/chairperson/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Who got married to Miriam Makeba in 1969?
SELECT ?obj WHERE { wd:/Miriam Makeba/ p:/spouse/ ?s . ?s ps:/spouse/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1969')) }
Generate a SPARQL query that returns the answer of the following question.
When was Dennis Hopper nominated for a Primetime Emmy Award for Outstanding Lead Actor in a Miniseries or a Movie?
SELECT ?value WHERE { wd:/Dennis Hopper/ p:/nominated for/ ?s . ?s ps:/nominated for/ wd:/Primetime Emmy Award for Outstanding Lead Actor in a Miniseries or a Movie/ . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
When were Pink Floyd granted the Grammy Award for Album of the Year?
SELECT ?value WHERE { wd:/Pink Floyd/ p:/nominated for/ ?s . ?s ps:/nominated for/ wd:/Grammy Award for Album of the Year/ . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
When did James Heckman receive the award Dan David Prize?
SELECT ?value WHERE { wd:/James Heckman/ p:/award received/ ?s . ?s ps:/award received/ wd:/Dan David Prize/ . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Is principle office Girls' Generation new label?
SELECT ?answer WHERE { wd:/Girls' Generation/ wdt:/record label/ ?X . ?X wdt:/headquarters location/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
How much alkanol is in the highest autoignition temperature?
select ?ent where { ?ent wdt:/instance of/ wd:/alkanol/ . ?ent wdt:/autoignition temperature/ ?obj . ?ent wdt:/instance of/ wd:/alkanol/ } ORDER BY DESC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
Was Tony_Blair religion Melkite Greek Catholic Church and Anglicanism?
ASK WHERE { wd:/Tony Blair/ wdt:/religion or worldview/ wd:/Melkite Greek Catholic Church/ . wd:/Tony Blair/ wdt:/religion or worldview/ wd:/Anglicanism/ }
Generate a SPARQL query that returns the answer of the following question.
When was the population of Nevada recorded as 488738.0?
SELECT ?value WHERE { wd:/Nevada/ p:/population/ ?s . ?s ps:/population/ ?x filter(contains(?x,'488738.0')) . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What are the tributaries of the river which the Incheon Bridge spans?
SELECT ?answer WHERE { wd:/Incheon Bridge/ wdt:/crosses/ ?X . ?X wdt:/tributary/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What is nominated for Chinatown that is nominee is Robert Evans ?
SELECT ?obj WHERE { wd:/Chinatown/ p:/nominated for/ ?s . ?s ps:/nominated for/ ?obj . ?s pq:/nominee/ wd:/Robert Evans/ }
Generate a SPARQL query that returns the answer of the following question.
Tell me the TMA most apoapsis
select ?ent where { ?ent wdt:/instance of/ wd:/Soyuz-TMA/ . ?ent wdt:/apoapsis/ ?obj } ORDER BY DESC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
What is the nominated for award received of Tom_Hardy?
SELECT ?ans_1 ?ans_2 WHERE { wd:/Tom Hardy/ wdt:/nominated for/ ?ans_1 . wd:/Tom Hardy/ wdt:/award received/ ?ans_2 }
Generate a SPARQL query that returns the answer of the following question.
Is it true that the number of perpetrators of the 1999 Armenian parliament shooting equal 8?
ASK WHERE { wd:/1999 Armenian parliament shooting/ wdt:/number of perpetrators/ ?obj filter(?obj = 8) }
Generate a SPARQL query that returns the answer of the following question.
what are the military rank which starts with s
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/military rank/ . ?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.
Meditations has been translated into how many languages?
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/edition or translation of/ wd:/Meditations/ }
Generate a SPARQL query that returns the answer of the following question.
Who was received the Nobel peace prize together with Yitzhak Rabin?
SELECT ?value WHERE { wd:/Yizhak Rabin/ p:/award received/ ?s . ?s ps:/award received/ wd:/Nobel Peace Prize/ . ?s pq:/together with/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What is a computer model which uses the word zx81 in it's name
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/computer model/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zx81')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
What part of Ireland's history includes the Nuclear Suppliers Group?
SELECT ?answer WHERE { wd:/history of Ireland/ wdt:/facet of/ ?answer . ?answer wdt:/member of/ wd:/Nuclear Suppliers Group/}
Generate a SPARQL query that returns the answer of the following question.
When did Ternopil Oblast become part of Ukraine?
SELECT ?value WHERE { wd:/Ternopil Oblast/ p:/located in the administrative territorial entity/ ?s . ?s ps:/located in the administrative territorial entity/ wd:/Ukraine/ . ?s pq:/start time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What district of Liguria originated in 2015?
SELECT ?obj WHERE { wd:/Liguria/ p:/contains the administrative territorial entity/ ?s . ?s ps:/contains the administrative territorial entity/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'2015')) }
Generate a SPARQL query that returns the answer of the following question.
What is the local authority for Greater London?
select distinct ?obj where { wd:/Greater London/ wdt:/authority/ ?obj . ?obj wdt:/instance of/ wd:/local authority/ }
Generate a SPARQL query that returns the answer of the following question.
Who was Faten Hamama's spouse in 1947?
SELECT ?obj WHERE { wd:/Faten Hamama/ p:/spouse/ ?s . ?s ps:/spouse/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1947')) }
Generate a SPARQL query that returns the answer of the following question.
What platform did whistleblower Julian Assange use?
select distinct ?sbj where { ?sbj wdt:/developer/ wd:/Julian Assange/ . ?sbj wdt:/instance of/ wd:/whistleblower platform/ }
Generate a SPARQL query that returns the answer of the following question.
Is the maximum glide ratio of Grob G102 Astir equal to 44.4?
ASK WHERE { wd:/Grob G 102 Astir/ wdt:/maximum glide ratio/ ?obj filter(?obj = 44.4) }
Generate a SPARQL query that returns the answer of the following question.
What sister of Jean Shrimpton has brown eyes?
SELECT ?answer WHERE { wd:/Jean Shrimpton/ wdt:/sibling/ ?answer . ?answer wdt:/eye color/ wd:/brown/}
Generate a SPARQL query that returns the answer of the following question.
Was the work of Victor Hugo influenced by Plato and Miguel de Cervantes?
ASK WHERE { wd:/Victor Hugo/ wdt:/influenced by/ wd:/Plato/ . wd:/Victor Hugo/ wdt:/influenced by/ wd:/Miguel de Cervantes/ }
Generate a SPARQL query that returns the answer of the following question.
With a total fertility rate of 1.8615, what is the event participant of the Guadalcanal Campaign?
SELECT ?answer WHERE { wd:/Guadalcanal campaign/ wdt:/participant/ ?answer . ?answer wdt:/total fertility rate/ ?x FILTER(contains(?x,'1.8615'))}
Generate a SPARQL query that returns the answer of the following question.
How many fastest lap times are held by Lewis Hamilton?
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/fastest lap/ wd:/Lewis Hamilton/ }
Generate a SPARQL query that returns the answer of the following question.
which brand contains the word vicks in their name
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/brand/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'vicks')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
What are the trigonometric function which start with the letter v
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/trigonometric function/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'v')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
What is the election to the Parliament of Catalonia with the lowest eligible voters whose candidate is Socialists' Party of Catalonia?
select ?ent where { ?ent wdt:/instance of/ wd:/election to the Parliament of Catalonia/ . ?ent wdt:/eligible voters/ ?obj . ?ent wdt:/candidate/ wd:/Socialists' Party of Catalonia/. } ORDER BY ASC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
What is not to be confused with the national anthem that has Q48460, not 781.599?
SELECT ?answer WHERE { wd:/national anthem/ wdt:/different from/ ?answer . ?answer wdt:/Dewey Decimal Classification/ ?x FILTER(contains(?x,'781.599'))}
Generate a SPARQL query that returns the answer of the following question.
What weapon model has the highest pressure?
select ?ent where { ?ent wdt:/instance of/ wd:/weapon model/ . ?ent wdt:/under pressure/ ?obj } ORDER BY DESC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
What is the language official of Luhansk, whose Linguasphere code is 53-AAA-ea?
SELECT ?answer WHERE { wd:/Luhansk/ wdt:/official language/ ?answer . ?answer wdt:/Linguasphere code/ ?x FILTER(contains(?x,'53-AAA-ea'))}
Generate a SPARQL query that returns the answer of the following question.
How tall is the actor who played of one of the Wise Men?
SELECT ?answer WHERE { wd:/biblical Magi/ wdt:/depicted by/ ?X . ?X wdt:/height/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Is polyvinyl chloride safe?
SELECT ?answer WHERE { wd:/polyvinyl chloride/ wdt:/polymer of/ ?X . ?X wdt:/safety classification and labelling/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Who gave the {dimension} of {on the shore of} of {Northern England} ?
SELECT ?answer WHERE { wd:/Northern England/ wdt:/located in or next to body of water/ ?X . ?X wdt:/length/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Was Euro country Finland and Latvia?
ASK WHERE { wd:/euro/ wdt:/country/ wd:/Finland/ . wd:/euro/ wdt:/country/ wd:/Latvia/ }
Generate a SPARQL query that returns the answer of the following question.
What is the death location of Saul on the continent of Asia?
SELECT ?answer WHERE { wd:/Saul/ wdt:/place of death/ ?answer . ?answer wdt:/continent/ wd:/Asia/}
Generate a SPARQL query that returns the answer of the following question.
Where was Constantine the Great born, and where did he die?
SELECT ?ans_1 ?ans_2 WHERE { wd:/Constantine the Great/ wdt:/place of birth/ ?ans_1 . wd:/Constantine the Great/ wdt:/place of death/ ?ans_2 }
Generate a SPARQL query that returns the answer of the following question.
What is the secular state with the MA compulsory education (minimum age) whose diplomatic relation is Australia ?
select ?ent where { ?ent wdt:/instance of/ wd:/secular state/ . ?ent wdt:/compulsory education (minimum age)/ ?obj . ?ent wdt:/diplomatic relation/ wd:/Australia/ } ORDER BY DESC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
Is it true that pKa of cocaine equals to 8.41?
ASK WHERE { wd:/cocaine/ wdt:/pKa/ ?obj filter(?obj = 8.41) }
Generate a SPARQL query that returns the answer of the following question.
What TV show is inspired by the life of Blackbeard?
select distinct ?sbj where { ?sbj wdt:/inspired by/ wd:/Blackbeard/ . ?sbj wdt:/instance of/ wd:/television program/ }
Generate a SPARQL query that returns the answer of the following question.
"Which is {Spanish name} of {Manolete}, that has {transliteration} is {Санчес} ?"
SELECT ?answer WHERE { wd:/Manolete/ wdt:/second family name in Spanish name/ ?answer . ?answer wdt:/transliteration/ ?x FILTER(contains(?x,'Санчес'))}
Generate a SPARQL query that returns the answer of the following question.
For what Victor Goldschmidt was in nomination in the year 1932?
SELECT ?obj WHERE { wd:/Viktor Moritz Goldschmidt/ p:/nominated for/ ?s . ?s ps:/nominated for/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1932')) }
Generate a SPARQL query that returns the answer of the following question.
Who is {wedded to} {chairperson} of {38th César Awards} ?
SELECT ?answer WHERE { wd:/38th César Awards/ wdt:/chairperson/ ?X . ?X wdt:/spouse/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
When did Deng Xiaoping marry Zhang Xiyuan?
SELECT ?value WHERE { wd:/Deng Xiaoping/ p:/spouse/ ?s . ?s ps:/spouse/ wd:/Zhang Xiyuan/ . ?s pq:/start time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Who was the spouse of Empress Matilda on January 1, 1128?
SELECT ?obj WHERE { wd:/Empress Matilda/ p:/spouse/ ?s . ?s ps:/spouse/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1128')) }
Generate a SPARQL query that returns the answer of the following question.
What is the county seat of Bandar Seri Bagawan in APEC?
SELECT ?answer WHERE { wd:/Bandar Seri Begawan/ wdt:/capital of/ ?answer . ?answer wdt:/member of/ wd:/Asia-Pacific Economic Cooperation/}
Generate a SPARQL query that returns the answer of the following question.
For what reason Robert Burns Woodward was in nomination in the year 1960?
SELECT ?obj WHERE { wd:/Robert Burns Woodward/ p:/nominated for/ ?s . ?s ps:/nominated for/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1960')) }
Generate a SPARQL query that returns the answer of the following question.
For Bryansk Oblast, what is the aspect of Russian literature that has cities?
SELECT ?answer WHERE { wd:/Russian literature/ wdt:/facet of/ ?answer . ?answer wdt:/contains the administrative territorial entity/ wd:/Bryansk Oblast/}
Generate a SPARQL query that returns the answer of the following question.
Give me a social class name that contains the word 'zeugitae' in it.
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/social class/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zeugitae')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
What are some of the signs of HN-1?
SELECT ?answer WHERE { wd:/HN-1/ wdt:/has effect/ ?X . ?X wdt:/symptoms and signs/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What is the military branch or location of Yuri Gagarin?
select distinct ?obj where { wd:/Yuri Gagarin/ wdt:/military branch/ ?obj . ?obj wdt:/instance of/ wd:/facility/ }
Generate a SPARQL query that returns the answer of the following question.
Which is the hereditary title office holder of Salman of Saudi Arabia?
select distinct ?sbj where { ?sbj wdt:/officeholder/ wd:/Salman bin Abdulaziz Al Saud/ . ?sbj wdt:/instance of/ wd:/hereditary title/ }
Generate a SPARQL query that returns the answer of the following question.
What is the name of the place where {Isambard Kingdom Brunel} died which has a {partner town} called {Tehran}
SELECT ?answer WHERE { wd:/Isambard Kingdom Brunel/ wdt:/place of death/ ?answer . ?answer wdt:/twinned administrative body/ wd:/Tehran/}
Generate a SPARQL query that returns the answer of the following question.
IS THE TOTAL PRODUCED OF DR CLASS E 15 EQUALS 1
ASK WHERE { wd:/DR Class E 15/ wdt:/total produced/ ?obj filter(?obj = 1) }
Generate a SPARQL query that returns the answer of the following question.
Name a mathematical function whose notation is made with a radical sign and that contains the word "root" in its name
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/type of mathematical function/ . ?sbj wdt:/notation/ wd:/radical sign/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'root')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
Who won the Battle of Austerlitz?
select distinct ?sbj where { ?sbj wdt:/conflict/ wd:/Battle of Austerlitz/ . ?sbj wdt:/instance of/ wd:/human/ }
Generate a SPARQL query that returns the answer of the following question.
What was the conflict that caused the War on Terror ?
select distinct ?obj where { wd:/War on Terror/ wdt:/has immediate cause/ ?obj . ?obj wdt:/instance of/ wd:/conflict/ }
Generate a SPARQL query that returns the answer of the following question.
What borough of Volyn Oblast has a Human Development Index of 0.713?
SELECT ?answer WHERE { wd:/Volyn Oblast/ wdt:/located in the administrative territorial entity/ ?answer . ?answer wdt:/Human Development Index/ ?x FILTER(contains(?x,'0.713'))}
Generate a SPARQL query that returns the answer of the following question.
What is the native language and the languages spoken, written or signed by Guy Ritchie?
SELECT ?ans_1 ?ans_2 WHERE { wd:/Guy Ritchie/ wdt:/native language/ ?ans_1 . wd:/Guy Ritchie/ wdt:/languages spoken, written or signed/ ?ans_2 }
Generate a SPARQL query that returns the answer of the following question.
What significant event for Buzz Aldrin began on July 21, 1969?
SELECT ?obj WHERE { wd:/Buzz Aldrin/ p:/significant event/ ?s . ?s ps:/significant event/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1969')) }
Generate a SPARQL query that returns the answer of the following question.
When did Pyotr Stolypin stop being the Minister of the Interior of Russia?
SELECT ?value WHERE { wd:/Pyotr Stolypin/ p:/position held/ ?s . ?s ps:/position held/ wd:/list of Ministers of Interior of Russia/ . ?s pq:/end time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Publius Aelius Hadrianus Afer is the son of which characters in Memoirs of Hadrian?
SELECT ?answer WHERE { wd:/Memoirs of Hadrian/ wdt:/characters/ ?answer . ?answer wdt:/father/ wd:/Publius Aelius Hadrianus Afer/}
Generate a SPARQL query that returns the answer of the following question.
Was the screenwriter of SpongeBob Squarepants named Kazimieras G. Prapuolenis?
ASK WHERE { wd:/SpongeBob SquarePants/ wdt:/screenwriter/ wd:/Kazimieras G. Prapuolenis/ }
Generate a SPARQL query that returns the answer of the following question.
Is the time index of the Thout more than 0.8?
ASK WHERE { wd:/Thout/ wdt:/time index/ ?obj filter(?obj > 0.8) }
Generate a SPARQL query that returns the answer of the following question.
Which is the tributary in the coast of Pico Island?
SELECT ?answer WHERE { wd:/Pico Island/ wdt:/located in or next to body of water/ ?X . ?X wdt:/tributary/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What time is it in Zhytomyr Oblast located in the UTC+3 time zone?
SELECT ?value WHERE { wd:/Zhytomyr Oblast/ p:/located in time zone/ ?s . ?s ps:/located in time zone/ wd:/UTC+03:00/ . ?s pq:/valid in period/ ?value}