query-d74a29e0f8c37bf7ded62e6ee48350da
title: Deutsche Unternehmen SELECT ?name (GROUP_CONCAT(DISTINCT ?klasse; SEPARATOR = ", ") AS ?art) (GROUP_CONCAT(DISTINCT ?sitz; SEPARATOR = ", ") AS ?sitze) ?mutter ?article ?gegründet ?item WHERE { ?item (wdt:P31/(wdt:p279*)) wd:Q6881511; wdt:P17 wd:Q183; wdt:P31 ?io. OPTIONAL { ?item wdt:P749 ?ueo. } OPTIONAL { ?item wdt:P159 ?hv. } OPTIONAL { ?item wdt:P571 ?gegründet. } OPTIONAL { ?article schema:about ?item; schema:isPartOf https://de.wikipedia.org/; schema:name ?page_title. } BIND(IF(BOUND(?page_title), ?page_title, ?label) AS ?name) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". ?item rdfs:label ?label. ?io rdfs:label ?klasse. ?hv rdfs:label ?sitz. ?ueo rdfs:label ?mutter. } } GROUP BY ?item ?name ?mutter ?article ?gegründet ORDER BY (?name)
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 schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Deutsche Unternehmen
SELECT ?name (GROUP_CONCAT(DISTINCT ?klasse; SEPARATOR = ", ") AS ?art) (GROUP_CONCAT(DISTINCT ?sitz; SEPARATOR = ", ") AS ?sitze) ?mutter ?article ?gegründet ?item WHERE {
?item (wdt:P31/(wdt:p279*)) wd:Q6881511;
wdt:P17 wd:Q183;
wdt:P31 ?io.
OPTIONAL { ?item wdt:P749 ?ueo. }
OPTIONAL { ?item wdt:P159 ?hv. }
OPTIONAL { ?item wdt:P571 ?gegründet. }
OPTIONAL {
?article schema:about ?item;
schema:isPartOf <https://de.wikipedia.org/>;
schema:name ?page_title.
}
BIND(IF(BOUND(?page_title), ?page_title, ?label) AS ?name)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?item rdfs:label ?label.
?io rdfs:label ?klasse.
?hv rdfs:label ?sitz.
?ueo rdfs:label ?mutter.
}
}
GROUP BY ?item ?name ?mutter ?article ?gegründet
ORDER BY (?name)