query-a86aa2ba683028a7707cb9a13780e503
Addresses
SELECT ?company ?companyLabel ?hqLocationLabel ?territorialEntityLabel WHERE {
?company wdt:P159 ?hqLocation . # company headquarted location ?hqLocation wdt:P131+ ?territorialEntity . # located in territorial entity ?territorialEntity wdt:P31 wd:Q35657 . # territorial entity is instance of 'state'
{ SELECT ?company WHERE { ?company wdt:P17 wd:Q30 . FILTER (?company IN (wd:Q95, wd:Q37156)) #Google/IBM } } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
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#>
#Addresses
SELECT ?company ?companyLabel ?hqLocationLabel ?territorialEntityLabel
WHERE
{
?company wdt:P159 ?hqLocation . # company headquarted location
?hqLocation wdt:P131+ ?territorialEntity . # located in territorial entity
?territorialEntity wdt:P31 wd:Q35657 . # territorial entity is instance of 'state'
{
SELECT ?company
WHERE
{
?company wdt:P17 wd:Q30 .
FILTER (?company IN (wd:Q95, wd:Q37156)) #Google/IBM
}
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }