query-6516feab0f6d7738ab78df40713ff1d7
Occupazioni dei personaggi livornesi SELECT ?jobLabel (COUNT(?jobLabel) as ?Conteggio) WHERE { ?item wdt:P19 wd:Q6761 . ?item wdt:P734 ?cognome. OPTIONAL { ?item wdt:P106 ?job .} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?jobLabel ORDER BY DESC(?Conteggio)
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 bd: <http://www.bigdata.com/rdf#>
#Occupazioni dei personaggi livornesi
SELECT ?jobLabel (COUNT(?jobLabel) as ?Conteggio)
WHERE
{
?item wdt:P19 wd:Q6761 .
?item wdt:P734 ?cognome.
OPTIONAL { ?item wdt:P106 ?job .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?jobLabel ORDER BY DESC(?Conteggio)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?Conteggio")
v3("?cognome")
v2("?item")
v4("?job")
v5("?jobLabel"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q6761"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P19"--> c2
v2 --"wdt:P734"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P106".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(?jobLabel)"/]
v5 --o bind1
bind1 --as--o v6