query-cf0eefcd626deeebdb0cd33a70b06b55
title:count of women items having a place of birth in India SELECT (COUNT(*) AS ?count) WHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P21 wd:Q6581072. ?item wdt:P19/wdt:P17 wd:Q668 . }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#title:count of women items having a place of birth in India
SELECT (COUNT(*) AS ?count)
WHERE {
?item wdt:P31 wd:Q5 .
?item wdt:P21 wd:Q6581072.
?item wdt:P19/wdt:P17 wd:Q668 .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?item")
a1((" "))
c7(["wd:Q668"]):::iri
c2(["wd:Q5"]):::iri
c4(["wd:Q6581072"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P21"--> c4
v1 --"wdt:P19"--> a1
a1 --"wdt:P17"--> c7
bind1[/"count(*)"/]
bind1 --as--o v2