query-7d976cec2eac864293c0e17fe5ecc3fa
mw:Wikidata Query Service/User Manual#Label service
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?personnes ?personnesLabel
(GROUP_CONCAT(DISTINCT(?occupationLabel); separator=", ") as ?LeursoccupationsLabel)
WHERE {
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en" .
?personnes rdfs:label ?personnesLabel.
?occupation rdfs:label ?occupationLabel.
}
VALUES ?metier {
wd:Q20814940
wd:Q45748643
wd:Q3542795
}
?personnes wdt:P106 ?metier;
wdt:P21 wd:Q6581072.
OPTIONAL { ?personnes wdt:P106 ?occupation. }
}
GROUP BY ?personnes ?personnesLabel ?LeursoccupationsLabel