instruction
stringclasses
1 value
input
stringlengths
1
655
output
stringlengths
47
392
Generate a SPARQL query that returns the answer of the following question.
Is the Location Of Death of Pius VI located in Saint-Marcel-lès-Valence?
SELECT ?answer WHERE { wd:/Pius VI/ wdt:/place of death/ ?answer . ?answer wdt:/shares border with/ wd:/Saint-Marcel-lès-Valence/}
Generate a SPARQL query that returns the answer of the following question.
When did Thierry Henry become a member of the France national football team?
SELECT ?value WHERE { wd:/Thierry Henry/ p:/member of sports team/ ?s . ?s ps:/member of sports team/ wd:/France national association football team/ . ?s pq:/start time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
When is {twinned administrative body} of {Fuzhou} where {start time} is {1981-5-20} ?
SELECT ?obj WHERE { wd:/Fuzhou/ p:/twinned administrative body/ ?s . ?s ps:/twinned administrative body/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1981')) }
Generate a SPARQL query that returns the answer of the following question.
When did Rachel Carson receive the Presidential Medal of Freedom?
SELECT ?value WHERE { wd:/Rachel Carson/ p:/award received/ ?s . ?s ps:/award received/ wd:/Presidential Medal of Freedom/ . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Tell me childbirth whose name has the word jesus in it.
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/parturition/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'jesus')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
Where are the papers of Queen Victoria at that have the coordinate 52.4145 -4.086846?
SELECT ?answer WHERE { wd:/Queen Victoria/ wdt:/archives at/ ?answer . ?answer wdt:/coordinate location/ ?x FILTER(contains(?x,'52.4145 -4.06846'))}
Generate a SPARQL query that returns the answer of the following question.
What is the strain with the lowest maximum viable temperature whose biosafety level is biosafety level 1?
select ?ent where { ?ent wdt:/instance of/ wd:/strain/ . ?ent wdt:/maximum viable temperature/ ?obj . ?ent wdt:/biosafety level/ wd:/biosafety level 1/} ORDER BY ASC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
When did Jean-Bertrand Aristide stop holding the position as the President of Haiti?
SELECT ?value WHERE { wd:/Jean-Bertrand Aristide/ p:/position held/ ?s . ?s ps:/position held/ wd:/President of Haiti/ . ?s pq:/end time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What is award received of La Strada that is statement is subject of is 29th Academy Awards ?
SELECT ?obj WHERE { wd:/La Strada/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/statement is subject of/ wd:/29th Academy Awards/ }
Generate a SPARQL query that returns the answer of the following question.
Is the number of spans of the Talbot Memorial Bridge more than 3.6?
ASK WHERE { wd:/Talbot Memorial Bridge/ wdt:/number of spans/ ?obj filter(?obj > 3.6) }
Generate a SPARQL query that returns the answer of the following question.
Name the spot of neon that has diplomatic relation in Denmark.
SELECT ?answer WHERE { wd:/neon/ wdt:/location of discovery/ ?answer . ?answer wdt:/diplomatic relation/ wd:/Denmark/}
Generate a SPARQL query that returns the answer of the following question.
Is Kenya's nominal GDP per capita equal to 1376.71?
ASK WHERE { wd:/Kenya/ wdt:/nominal GDP per capita/ ?obj filter(?obj = 1376.71) }
Generate a SPARQL query that returns the answer of the following question.
Is it true Facebook founded by Andrew McCollum?
ASK WHERE { wd:/Facebook/ wdt:/founded by/ wd:/Andrew McCollum/ }
Generate a SPARQL query that returns the answer of the following question.
Are The Happy Accidents of the Swing still on exhibit?
SELECT ?answer WHERE { wd:/The Swing/ wdt:/collection/ ?X . ?X wdt:/heritage designation/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What award did Marvin Minsky receive in the early 1900's ?
SELECT ?obj WHERE { wd:/Marvin Minsky/ 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.
What is the leader of the nominee for of The Lavender Hill Mob ?
SELECT ?answer WHERE { wd:/The Lavender Hill Mob/ wdt:/nominated for/ ?X . ?X wdt:/winner/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
tell me mythical human-animal hybird statrs with p
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/mythical human-animal hybrid/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'p')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
What is the court and application of jurisdiction of Roe v. Wade?
SELECT ?ans_1 ?ans_2 WHERE { wd:/Roe v. Wade/ wdt:/court/ ?ans_1 . wd:/Roe v. Wade/ wdt:/applies to jurisdiction/ ?ans_2 }
Generate a SPARQL query that returns the answer of the following question.
What term is used to describe a resident of Hong Kong?
select distinct ?sbj where { ?sbj wdt:/permanent resident of/ wd:/Hong Kong/ . ?sbj wdt:/instance of/ wd:/human/ }
Generate a SPARQL query that returns the answer of the following question.
Which are the afflicts that has a result of ethylene glycol?
SELECT ?answer WHERE { wd:/ethylene glycol/ wdt:/has effect/ ?X . ?X wdt:/afflicts/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Which is the literature work that had Hebrew as a language of work?
select distinct ?sbj where { ?sbj wdt:/language of work or name/ wd:/Hebrew/ . ?sbj wdt:/instance of/ wd:/literary work/ }
Generate a SPARQL query that returns the answer of the following question.
What issue number of Doraemon was published on 1982-9-5?
SELECT ?value WHERE { wd:/Doraemon/ p:/publication date/ ?s . ?s ps:/publication date/ ?x filter(contains(YEAR(?x),'1982')) . ?s pq:/applies to part/ ?value}
Generate a SPARQL query that returns the answer of the following question.
How many Commons categories are there for writing?
SELECT (COUNT(?obj) AS ?value ) { wd:/writing/ wdt:/Commons category/ ?obj }
Generate a SPARQL query that returns the answer of the following question.
What inspired Dracula?
SELECT ?answer WHERE { wd:/Dracula/ wdt:/based on/ ?X . ?X wdt:/inspired by/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
For which company is Mark Zuckerberg the CEO?
select distinct ?sbj where { ?sbj wdt:/chief executive officer/ wd:/Mark Zuckerberg/ . ?sbj wdt:/instance of/ wd:/business/ }
Generate a SPARQL query that returns the answer of the following question.
Is Moses same as Moses in Islam and Moses in rabbinic literature?
ASK WHERE { wd:/Moses/ wdt:/said to be the same as/ wd:/Moses in Islam/ . wd:/Moses/ wdt:/said to be the same as/ wd:/Moses in rabbinic literature/ }
Generate a SPARQL query that returns the answer of the following question.
What is the nationality of the diplomatic relation of Alan Sugar?
SELECT ?answer WHERE { wd:/Alan Sugar/ wdt:/country of citizenship/ ?X . ?X wdt:/diplomatic relation/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What award did Renee Zellweger receive in 2004?
SELECT ?obj WHERE { wd:/Renée Zellweger/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'2004')) }
Generate a SPARQL query that returns the answer of the following question.
Is the production rate of Somontano the same as 144093.6
ASK WHERE { wd:/Somontano/ wdt:/production rate/ ?obj filter(?obj = 144093.6) }
Generate a SPARQL query that returns the answer of the following question.
Who gave the{pronunciation audio} of {this taxon is a source of} of {Cucumis sativus} ?
SELECT ?answer WHERE { wd:/Cucumis sativus/ wdt:/this taxon is source of/ ?X . ?X wdt:/pronunciation audio/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What is the featured work of Sonic the Hedgehog that has the voice of actor Dennis Haysbert?
SELECT ?answer WHERE { wd:/Sonic the Hedgehog/ wdt:/present in work/ ?answer . ?answer wdt:/voice actor/ wd:/Dennis Haysbert/}
Generate a SPARQL query that returns the answer of the following question.
WHICH IS THE RAILROAD WITH THE MAXIMUM GRADIENT
select ?ent where { ?ent wdt:/instance of/ wd:/railway/ . ?ent wdt:/maximum gradient/ ?obj } ORDER BY DESC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
Is the minimal lethal concentration of dichlorine greater than 640?
ASK WHERE { wd:/dichlorine/ wdt:/minimal lethal concentration/ ?obj filter(?obj > 640.0) }
Generate a SPARQL query that returns the answer of the following question.
What are the diplomatic rank which start with the letter permanent
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/diplomatic rank/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'permanent')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
Name an hill in Asia that contains the word "ridges" in its name
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/hill/ . ?sbj wdt:/continent/ wd:/Asia/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'ridges')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
"Which is {musical score by} of {Requiem}, where {woman} is {male} ?"
SELECT ?answer WHERE { wd:/Requiem/ wdt:/composer/ ?answer . ?answer wdt:/sex or gender/ wd:/male/}
Generate a SPARQL query that returns the answer of the following question.
What is the criterion used for formaldehyde whose vapor pressure is 1.0?
SELECT ?value WHERE { wd:/formaldehyde/ p:/vapor pressure/ ?s . ?s ps:/vapor pressure/ ?x filter(contains(?x,'1.0')) . ?s pq:/criterion used/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Was Alexander the Great a citizen of Macedonia?
ASK WHERE { wd:/Alexander the Great/ wdt:/country of citizenship/ wd:/Macedonia/ }
Generate a SPARQL query that returns the answer of the following question.
What is the Superior Court of South Australia's highest judiciary?
select distinct ?obj where { wd:/South Australia/ wdt:/highest judicial authority/ ?obj . ?obj wdt:/instance of/ wd:/superior court (common law)/ }
Generate a SPARQL query that returns the answer of the following question.
What is the field of research of the board game publisher of USB-C?
SELECT ?answer WHERE { wd:/USB-C/ wdt:/publisher/ ?X . ?X wdt:/interested in/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What award did David Letterman receive in 2007?
SELECT ?obj WHERE { wd:/David Letterman/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'2007')) }
Generate a SPARQL query that returns the answer of the following question.
When was Marissa Mayer no longer working at Yahoo?
SELECT ?value WHERE { wd:/Marissa Mayer/ p:/employer/ ?s . ?s ps:/employer/ wd:/Yahoo!/ . ?s pq:/end time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What school did the International Olympic Committee's founder attend?
SELECT ?answer WHERE { wd:/International Olympic Committee/ wdt:/founded by/ ?X . ?X wdt:/educated at/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What is the sexually homologous and venous drainage of Clitoris?
SELECT ?ans_1 ?ans_2 WHERE { wd:/clitoris/ wdt:/sexually homologous with/ ?ans_1 . wd:/clitoris/ wdt:/venous drainage/ ?ans_2 }
Generate a SPARQL query that returns the answer of the following question.
When did Raúl Castro marry Vilma Espín?
SELECT ?value WHERE { wd:/Raúl Castro/ p:/spouse/ ?s . ?s ps:/spouse/ wd:/Vilma Espin/ . ?s pq:/start time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
When did lmus have a population of 301624.0?
SELECT ?value WHERE { wd:/Imus/ p:/population/ ?s . ?s ps:/population/ ?x filter(contains(?x,'301624.0')) . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Tell me female beauty pageant whose name has the word world in it.
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:// . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'world')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
Tell me the sovereign state for the capital of Belgrade.
select distinct ?sbj where { ?sbj wdt:/capital/ wd:/Belgrade/ . ?sbj wdt:/instance of/ wd:/sovereign state/ }
Generate a SPARQL query that returns the answer of the following question.
WHEN DID THE SPALDEEN ESTABLISHED AND BUILT?
SELECT ?answer WHERE { wd:/Spaldeen/ wdt:/manufacturer/ ?X . ?X wdt:/founded by/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
In which year Bob Dylan received the Grammy Lifetime Achievement Award?
SELECT ?value WHERE { wd:/Bob Dylan/ p:/award received/ ?s . ?s ps:/award received/ wd:/Grammy Lifetime Achievement Award/ . ?s pq:/point in time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Which region of Spain shares its border with Granada?
select distinct ?obj where { wd:/Granada/ wdt:/shares border with/ ?obj . ?obj wdt:/instance of/ wd:/municipality of Spain/ }
Generate a SPARQL query that returns the answer of the following question.
who domain of continent of antarctic ice sheet?
SELECT ?answer WHERE { wd:/Antarctic ice sheet/ wdt:/continent/ ?X . ?X wdt:/top-level Internet domain/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What year was the university Pavel Nakhimov attended established?
SELECT ?answer WHERE { wd:/Pavel Nakhimov/ wdt:/educated at/ ?X . ?X wdt:/inception/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Is it true that the energy storage capacity of Nokia X is less than 1800?
ASK WHERE { wd:/Nokia X/ wdt:/energy storage capacity/ ?obj filter(?obj < 1800.0) }
Generate a SPARQL query that returns the answer of the following question.
What was the quantity of fatalities in the action of Matt Busby?
SELECT ?answer WHERE { wd:/Matt Busby/ wdt:/conflict/ ?X . ?X wdt:/number of deaths/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Is the vehicle range of INS Talwar equal to 4215?
ASK WHERE { wd:/INS Talwar/ wdt:/vehicle range/ ?obj filter(?obj = 4215) }
Generate a SPARQL query that returns the answer of the following question.
Name an Italian Opera played for the first time at Teatro La Fenice that contains the word "la" in its name
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/Italian opera/ . ?sbj wdt:/location of first performance/ wd:/Teatro La Fenice/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'la')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
What place, starting with the letter s, has town rights and privileges as well as listed monuments and objects in Salzburg?
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/place with town rights and privileges/ . ?sbj wdt:/list of monuments/ wd:/listed objects in Salzburg/ . ?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.
How many health specialties are there for the deficit hyperactivity disorder} ?
SELECT (COUNT(?obj) AS ?value ) { wd:/attention deficit hyperactivity disorder/ wdt:/health specialty/ ?obj }
Generate a SPARQL query that returns the answer of the following question.
Which programming language did Grace Hopper create?
select distinct ?sbj where { ?sbj wdt:/designed by/ wd:/Grace Hopper/ . ?sbj wdt:/instance of/ wd:/programming language/ }
Generate a SPARQL query that returns the answer of the following question.
What are the administrative divisions of the headquarters of Sinovac Biotech?
SELECT ?answer WHERE { wd:/Sinovac Biotech/ wdt:/headquarters location/ ?X . ?X wdt:/contains the administrative territorial entity/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Which is the position in the time period of Reconquista?
select distinct ?sbj where { ?sbj wdt:/time period/ wd:/Reconquista/ . ?sbj wdt:/instance of/ wd:/position/ }
Generate a SPARQL query that returns the answer of the following question.
What branch of the German army has a toponym of Beer Hall Putsch?
SELECT ?answer WHERE { wd:/Beer Hall Putsch/ wdt:/named after/ ?answer . ?answer wdt:/military branch/ wd:/Imperial German Army/}
Generate a SPARQL query that returns the answer of the following question.
Name the Language of origin of The Onion, that has its native to England.
SELECT ?answer WHERE { wd:/The Onion/ wdt:/language of work or name/ ?answer . ?answer wdt:/indigenous to/ wd:/England/}
Generate a SPARQL query that returns the answer of the following question.
Who is Nicole Richie's mother?
select distinct ?sbj where { ?sbj wdt:/mother/ wd:/Nicole Richie/ . ?sbj wdt:/instance of/ wd:/human/ }
Generate a SPARQL query that returns the answer of the following question.
What was the twinned administrative body of Hebei at 1983-11-11?
SELECT ?obj WHERE { wd:/Hebei/ p:/twinned administrative body/ ?s . ?s ps:/twinned administrative body/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1983')) }
Generate a SPARQL query that returns the answer of the following question.
How do you pronounce Cocos nucifera in Tamil?
SELECT ?obj WHERE { wd:/Cocos nucifera/ p:/pronunciation audio/ ?s . ?s ps:/pronunciation audio/ ?obj . ?s pq:/language of work or name/ wd:/Tamil/ }
Generate a SPARQL query that returns the answer of the following question.
What venue was a part of Franco Baresi?
SELECT ?answer WHERE { wd:/Franco Baresi/ wdt:/participant in/ ?X . ?X wdt:/location/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What are the Catholic cathedral which start with the letter saint
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/Catholic cathedral/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'saint')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
When did John C. Fremont leave the United States Senate as a Senator?
SELECT ?value WHERE { wd:/John C. Frémont/ p:/position held/ ?s . ?s ps:/position held/ wd:// . ?s pq:/end time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What did Christopher Hitchens write?
select distinct ?sbj where { ?sbj wdt:/characters/ wd:/Christopher Hitchens/ . ?sbj wdt:/instance of/ wd:/written work/ }
Generate a SPARQL query that returns the answer of the following question.
What are the most notable works of Charles Dickens?
select distinct ?obj where { wd:/Charles Dickens/ wdt:/notable work/ ?obj . ?obj wdt:/instance of/ wd:/written work/ }
Generate a SPARQL query that returns the answer of the following question.
What was Robert Lowell nominated for in 1964?
SELECT ?obj WHERE { wd:/Robert Lowell/ p:/nominated for/ ?s . ?s ps:/nominated for/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1964')) }
Generate a SPARQL query that returns the answer of the following question.
When did Henri Fréville become the head of government of Rennes?
SELECT ?value WHERE { wd:/Rennes/ p:/head of government/ ?s . ?s ps:/head of government/ wd:/Henri Fréville/ . ?s pq:/start time/ ?value}
Generate a SPARQL query that returns the answer of the following question.
who is titleholder of nomination received of Friendly Persuasion ?
SELECT ?answer WHERE { wd:/Friendly Persuasion/ wdt:/nominated for/ ?X . ?X wdt:/winner/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What is the main activity of Harman International Industries?
SELECT ?answer WHERE { wd:/Harman International Industries/ wdt:/has subsidiary/ ?X . ?X wdt:/product or material produced/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
What fictional location starts with the letter "z"?
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/fictional location/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'z')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
What gun has the highest firing rate?
select ?ent where { ?ent wdt:/instance of/ wd:/weapon model/ . ?ent wdt:/rate of fire/ ?obj . ?ent wdt:/instance of/ wd:/weapon model/} ORDER BY ASC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
Who is John Huston's stepparent?
select distinct ?sbj where { ?sbj wdt:/stepparent/ wd:/John Huston/ . ?sbj wdt:/instance of/ wd:/human/ }
Generate a SPARQL query that returns the answer of the following question.
Name the property measured by Cattell Culture Fair III that contains the word "intelligence" in its name
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/property/ . ?sbj wdt:/measurement scale/ wd:/Cattell Culture Fair III/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'intelligence')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
Generate a SPARQL query that returns the answer of the following question.
Who is the person with the lowest score in ski jumping.
select ?ent where { ?ent wdt:/instance of/ wd:/human/ . ?ent wdt:/personal best/ ?obj . ?ent wdt:/sport/ wd:/ski jumping/} ORDER BY ASC(?obj)LIMIT 5
Generate a SPARQL query that returns the answer of the following question.
Who replaced Jan Karol Chodkiewicz as the Great Hetman of Lithuania?
SELECT ?value WHERE { wd:/Jan Karol Chodkiewicz/ p:/position held/ ?s . ?s ps:/position held/ wd:/Great Hetman of Lithuania/ . ?s pq:/replaced by/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What is the main influence of T.S. Eliot's bibliography?
SELECT ?answer WHERE { wd:/T. S. Eliot bibliography/ wdt:/facet of/ ?X . ?X wdt:/influenced by/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Does N26 Black have an interest rate equal to 0?
ASK WHERE { wd:/N26 Black/ wdt:/interest rate/ ?obj filter(?obj = 0) }
Generate a SPARQL query that returns the answer of the following question.
Who is the {episcopal see} for {office held by head of the organisation} of {pope}
select distinct ?sbj where { ?sbj wdt:/office held by head of the organization/ wd:/pope/ . ?sbj wdt:/instance of/ wd:/episcopal see/ }
Generate a SPARQL query that returns the answer of the following question.
What is the { end cause } for { Paul } as { Judaism } has { religion }?
SELECT ?value WHERE { wd:/Paul the Apostle/ p:/religion or worldview/ ?s . ?s ps:/religion or worldview/ wd:/Judaism/ . ?s pq:/end cause/ ?value}
Generate a SPARQL query that returns the answer of the following question.
How many are approved for the Iraq War?
SELECT (COUNT(?obj) AS ?value ) { wd:/Iraq War/ wdt:/approved by/ ?obj }
Generate a SPARQL query that returns the answer of the following question.
Who replaced Arthur Fadden's held position as Prime Minister of Australia?
SELECT ?value WHERE { wd:/Arthur Fadden/ p:/position held/ ?s . ?s ps:/position held/ wd:/Prime Minister of Australia/ . ?s pq:/replaces/ ?value}
Generate a SPARQL query that returns the answer of the following question.
What is the Commons category of Edgar Degas whose place of burial is Montmartre Cemetery.
SELECT ?value WHERE { wd:/Edgar Degas/ p:/place of burial/ ?s . ?s ps:/place of burial/ wd:/Montmartre Cemetery/ . ?s pq:/Commons category/ ?value}
Generate a SPARQL query that returns the answer of the following question.
Which area is the Cremation of Role Model C.S.Lewis?
SELECT ?answer WHERE { wd:/C. S. Lewis/ wdt:/influenced by/ ?X . ?X wdt:/place of death/ ?answer}
Generate a SPARQL query that returns the answer of the following question.
Give the name of Tove Jansson was educated at in the year 1937?
SELECT ?obj WHERE { wd:/Tove Jansson/ p:/educated at/ ?s . ?s ps:/educated at/ ?obj . ?s pq:/end time/ ?x filter(contains(YEAR(?x),'1937')) }
Generate a SPARQL query that returns the answer of the following question.
Does the port of the Remote Desktop Protocol equal to 3389
ASK WHERE { wd:/Remote Desktop Protocol/ wdt:/port/ ?obj filter(?obj = 3389) }
Generate a SPARQL query that returns the answer of the following question.
Is the solubility of ethylene dichloride less than 1.08?
ASK WHERE { wd:/1,2-dichloroethane/ wdt:/solubility/ ?obj filter(?obj < 1.08) }
Generate a SPARQL query that returns the answer of the following question.
Name a cryptocurrency that starts with letter B
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/cryptocurrency/ . ?sbj wdt:/notation/ wd:/Bitcoin sign/ . ?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.
How many members of the sports team are from the Saitama Seibu Lions?
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/member of sports team/ wd:/Saitama Seibu Lions/ }
Generate a SPARQL query that returns the answer of the following question.
Is the topographic isolation of Signalkuppe equal to 0.56?
ASK WHERE { wd:/Signalkuppe/ wdt:/topographic isolation/ ?obj filter(?obj = 0.56) }
Generate a SPARQL query that returns the answer of the following question.
What is the college attended by Ron Chernow whose subsidiary entity is Department of Psychology, University of Cambridge?
SELECT ?answer WHERE { wd:/Ron Chernow/ wdt:/educated at/ ?answer . ?answer wdt:/has subsidiary/ wd:/Department of Psychology, University of Cambridge/}
Generate a SPARQL query that returns the answer of the following question.
What is the forename of Jan Švankmajer, which is known for its frequency of first names in the Netherlands, 2010?
SELECT ?answer WHERE { wd:/Jan Švankmajer/ wdt:/given name/ ?answer . ?answer wdt:/significant event/ wd:/frequency of first names in the Netherlands, 2010/}
Generate a SPARQL query that returns the answer of the following question.
Tell me {city of India} which start with the letter w
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/city of India/ . ?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.
how many hold the coat of arms?
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/coat of arms/ wd:/coat of arms/ }