query-a39fd8cb759509d40b0f0ade4035ffdc
CEOs of hospitals in Potsdam
SELECT DISTINCT ?hospitalLabel ?ceoLabel
WHERE
{
?hospital wdt:P31/wdt:P279* wd:Q16917; #hospital
wdt:P131 wd:Q1711;
wdt:P169 ?ceo.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?hospitalLabel
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#>
#CEOs of hospitals in Potsdam
SELECT DISTINCT ?hospitalLabel ?ceoLabel
WHERE
{
?hospital wdt:P31/wdt:P279* wd:Q16917; #hospital
wdt:P131 wd:Q1711;
wdt:P169 ?ceo.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?hospitalLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?ceo")
v2("?hospital")
v1("?hospitalLabel"):::projected
a1((" "))
c5(["wd:Q1711"]):::iri
c8(["bd:serviceParam"]):::iri
c3(["wd:Q16917"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P131"--> c5
v2 --"wdt:P169"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end