query-83a5c10320f2805fb50a9cbfb3f21af8

rq turtle/ttl

أسماء مكان الولادة لكل مكان Popular names per birthplace Popular names per birthplace Oblíbená jména podle místa narození Popular names per birthplace Beliebte Namen nach Geburtsort Popular names per birthplace Popular names per birthplace Popular names per birthplace Popular names per birthplace Popular names per birthplace Noms populaires en fonction du lieu de naissance(P735)given name (P19)place of birth Propriétés utilisées : (Q64)Berlin Éléments utilisés : Popular names per birthplace Popular names per birthplace Popular names per birthplace Nomi popolari per luogo di nascita Popular names per birthplace Popular names per birthplace Popular names per birthplace Popular names per birthplace Popular names per birthplace Populaire namen per geboorteplaats(P735)given name (P19)place of birth Gebruikte eigenschappen: (Q64)Berlin Gebruikte items: Popular names per birthplace Popular names per birthplace Popular names per birthplace Popular names per birthplace Popular names per birthplace Populära namn efter födelseort(P735)given name (P19)place of birth Använda egenskaper: (Q64)Berlin Använda objekt: Popular names per birthplace Popular names per birthplace Популярні імена за місцем народження(P735)given name , (P19)place of birth Використані властивості: (Q64)Berlin Використані елементи: Popular names per birthplace 各出生地流行的名字 (Q64)Berlin 使用项:

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#defaultView:BubbleChart
SELECT ?cid ?firstname (COUNT(*) AS ?count)
WHERE
{
  ?pid wdt:P19 wd:Q64.
  ?pid wdt:P735 ?cid.
  OPTIONAL {
    ?cid rdfs:label ?firstname
    FILTER((LANG(?firstname)) = "en")
  }
}
GROUP BY ?cid ?firstname
ORDER BY DESC(?count) ?firstname
LIMIT 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?cid"):::projected v5("?count") v2("?firstname"):::projected v3("?pid") c3(["wd:Q64"]):::iri v3 --"wdt:P19"--> c3 v3 --"wdt:P735"--> v4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."rdfs:label".-> v2 end bind1[/"count(*)"/] bind1 --as--o v5