query-ac31a9986f0b884a6aa7d45a351e6970
同时是总统(职位)又是演员(职业)的人物列表
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#>
SELECT DISTINCT ?politician ?politicianLabel ?country ?countryLabel
WHERE
{
?politician wdt:P39/wdt:P279* wd:Q48352 .
?politician wdt:P106/wdt:P279* wd:Q33999.
?politician wdt:P27 ?country.
SERVICE wikibase:label { bd:serviceParam wikibase:language "zh-cn,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?country"):::projected
v1("?politician"):::projected
a1((" "))
a2((" "))
c3(["wd:Q48352"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["zh-cn,en"]):::literal
c5(["wd:Q33999"]):::iri
v1 --"wdt:P39"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P106"--> a2
a2 --"wdt:P279"--> c5
v1 --"wdt:P27"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end