User:Hachiichi77

From Wikidata
Jump to navigation Jump to search
Babel user information
ja-N この利用者は日本語母語としています。
en-1 This user has basic knowledge of English.
zh-0 这位用户不懂或很难理解中文
fr-0 Cet utilisateur n’a aucune connaissance en français (ou le comprend avec de grandes difficultés).
es-0 Esta persona no tiene ningún conocimiento del español (o lo entiende con mucha dificultad).
de-0 Dieser Benutzer beherrscht Deutsch nicht (oder versteht es nur mit beträchtlichen Schwierigkeiten).
uk-0 Цей користувач не володіє українською мовою (або розуміє її дуже погано).
Users by language
This user contributes using Firefox.

About me

[edit]

query

[edit]

対応中・済みのものを含む

日本の会社または企業で日本語ラベルが付与されていないもの

[edit]
SELECT DISTINCT ?item ?itemLabel WHERE {
  VALUES ?organizationType {
    wd:Q783794
    wd:Q4830453
  }
  ?item wdt:P31 ?organizationType;
    wdt:P17 wd:Q17.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  FILTER(NOT EXISTS {
    ?item rdfs:label ?lang_label.
    FILTER((LANG(?lang_label)) = "ja")
  })
}
ORDER BY (?item)
Try it!

日本語名称不明

[edit]

日本の終了日のない会社または企業で法人番号が付与されていないもの

[edit]
SELECT DISTINCT ?item ?itemLabel WHERE {
  VALUES ?organizationType {
    wd:Q783794
    wd:Q4830453
  }
  ?item wdt:P31 ?organizationType;
    wdt:P17 wd:Q17.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  MINUS { ?item wdt:P3225 _:b6. }
  MINUS { ?item wdt:P576 _:b7. }
  MINUS { ?item wdt:P31 wd:Q55097243 }
}
ORDER BY (?item)
Try it!

簡易版

[edit]
SELECT DISTINCT ?item ?itemLabel ?startDate WHERE {
  VALUES ?organizationType {
    wd:Q4830453
  }
  ?item wdt:P31 ?organizationType;
    wdt:P17 wd:Q17;
    wdt:P571 ?startDate.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  MINUS { ?item wdt:P3225 _:b6. }
  MINUS { ?item wdt:P576 _:b7. }
  MINUS { ?item wdt:P31 wd:Q55097243 }
  MINUS { ?item wdt:P31 wd:Q10846389 }
}
ORDER BY DESC(?startDate)
LIMIT 100
Try it!

法人番号検索ヒットなし

[edit]

ブランド名と混在

[edit]

住所不一致

[edit]

公式サイト アクセス不能のため活動実態不明

[edit]

判断不能

[edit]

本部所在地が日本にある会社または企業で国が設定されていないもの

[edit]
SELECT DISTINCT ?item ?itemLabel WHERE {
  VALUES ?organizationType {
    wd:Q783794
    wd:Q4830453
  }
  ?item wdt:P31 ?organizationType;
    (wdt:P159/(wdt:P131*)) wd:Q17.
  MINUS { ?item wdt:P17 _:b3. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
ORDER BY (?item)
Try it!

United States occupation of the Ryukyu Islands (Q11285099) が未考慮

日本にある東証上場企業で組織形態が未設定のもの

[edit]
SELECT DISTINCT ?item ?itemLabel WHERE {
  ?item wdt:P17 wd:Q17;
    wdt:P414 wd:Q217475.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  MINUS { ?item wdt:P1454 _:b10. }
}
ORDER BY (?item)
Try it!