LoginSignup
0
1

More than 5 years have passed since last update.

#東京都の隣接都道府県のリスト

Last updated at Posted at 2015-12-01

select distinct ?pref ?label where {
http://ja.dbpedia.org/resource/東京都 http://ja.dbpedia.org/property/隣接都道府県 ?pref .
?pref http://www.w3.org/2000/01/rdf-schema#label ?label
}

東証一部上場企業

select distinct ?name ?abstract where {
?company http://dbpedia.org/ontology/wikiPageWikiLink http://ja.dbpedia.org/resource/Category:東証一部上場企業 .
?company rdfs:label ?name .
?company http://dbpedia.org/ontology/abstract ?abstract .
}

都道府県名と概要

select distinct * where {
?company http://dbpedia.org/ontology/wikiPageWikiLink http://ja.dbpedia.org/resource/Category:日本の都道府県 .
?company rdfs:label ?name .
?company http://dbpedia.org/ontology/abstract ?abstract .
}

日本の都道府県,市町村リスト

select distinct ?prefectureName ?cityName where {
?prefecture http://dbpedia.org/ontology/wikiPageWikiLink http://ja.dbpedia.org/resource/Category:日本の都道府県 .
?prefecture a http://schema.org/AdministrativeArea .
?city http://dbpedia.org/ontology/location ?prefecture .
?prefecture rdfs:label ?prefectureName .
?city a http://dbpedia.org/ontology/City .
?city rdfs:label ?cityName .
}

media wiki api 仕様

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1