query-07e46c2c2b1f1119e05fb59a0e86b16a
municipis d'Espanya segons el nombre d'ajuntaments SELECT DISTINCT ?municipio ?municipioLabel (COUNT(?ayuntamiento) AS ?num_casas_consistoriales) WITH { SELECT DISTINCT ?municipio ?ayuntamiento WHERE { ?municipio wdt:P31/wdt:P279* wd:Q2074737. ?ayuntamiento wdt:P31 wd:Q112793351; wdt:P131 ?municipio. } } AS %1 WHERE { INCLUDE %1 SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?municipio ?municipioLabel
HAVING ((COUNT(?ayuntamiento)) > 1 )
ORDER BY DESC (?num_casas_consistoriales)
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#>
# municipis d'Espanya segons el nombre d'ajuntaments
SELECT DISTINCT ?municipio ?municipioLabel (COUNT(?ayuntamiento) AS ?num_casas_consistoriales)
WHERE {
{
SELECT DISTINCT ?municipio ?ayuntamiento WHERE {
?municipio wdt:P31/wdt:P279* wd:Q2074737.
?ayuntamiento wdt:P31 wd:Q112793351;
wdt:P131 ?municipio.
}
} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?municipio ?municipioLabel
#HAVING ((COUNT(?ayuntamiento)) > 1 )
ORDER BY DESC (?num_casas_consistoriales)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?ayuntamiento"):::projected
v2("?municipio"):::projected
v4("?num_casas_consistoriales")
a1((" "))
c3(["wd:Q2074737"]):::iri
c7(["bd:serviceParam"]):::iri
c4(["wd:Q112793351"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v3 --"wdt:P31"--> c4
v3 --"wdt:P131"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"count(?ayuntamiento)"/]
v3 --o bind1
bind1 --as--o v4