Difference between revisions of "Sample Queries"
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
* People in this Wikibase | * People in this Wikibase | ||
+ | #People | ||
+ | SELECT ?item ?itemLabel ?lifetime ?itemDescription | ||
+ | WHERE | ||
+ | { | ||
+ | ?item wdt:P21 ?lifetime. | ||
+ | SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | ||
+ | } | ||
* | * |
Revision as of 11:59, 28 July 2021
Read more on queries
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/Wikidata_Query_Help/Result_Views/en
- https://en.wikibooks.org/wiki/SPARQL/FILTER
People and their relationships
- People in this Wikibase
- People
SELECT ?item ?itemLabel ?lifetime ?itemDescription WHERE {
?item wdt:P21 ?lifetime. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}