query-ac246b1072e8a3df6aef4b9e8604cb78
title:Persons born in Riga with LNB ID and with a birthdate (all values) SELECT ?item ?itemLabel ?lnb ?birthdate wHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P19 wd:Q1773 . ?item p:P569/ps:P569 ?birthdate . #it could also be written "?item p:P569 ?statement . ?statement ps:P569 ?birthdate" ?item wdt:P1368 ?lnb . SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". } } ORDER BY ?itemLabel ?birthdate
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Persons born in Riga with LNB ID and with a birthdate (all values)
SELECT ?item ?itemLabel ?lnb ?birthdate
wHERE {
?item wdt:P31 wd:Q5 .
?item wdt:P19 wd:Q1773 .
?item p:P569/ps:P569 ?birthdate . #it could also be written "?item p:P569 ?statement . ?statement ps:P569 ?birthdate"
?item wdt:P1368 ?lnb .
SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". }
}
ORDER BY ?itemLabel ?birthdate
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?birthdate"):::projected
v3("?item"):::projected
v1("?itemLabel"):::projected
v4("?lnb"):::projected
a1((" "))
c9(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c4(["wd:Q1773"]):::iri
c11(["lv,mul,en"]):::literal
v3 --"p:direct/P31"--> c2
v3 --"p:direct/P19"--> c4
v3 --"p:P569"--> a1
a1 --"p:statement/P569"--> v2
v3 --"p:direct/P1368"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end