在Wikidata中,俄罗斯被标记为“主权国家”(Q3624078)实例和“国家”(https://www.wikidata.org/wiki/Q159)实例。
状态为“主权国家”的https://query.wikidata.org/的SPARQL请求返回俄罗斯:
SELECT DISTINCT ?country ?countryLabel
WHERE
{
?country wdt:P31 wd:Q3624078 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?countryLabel
但是带有“国家/地区”标签的SPARQL请求不会:
SELECT DISTINCT ?country ?countryLabel
WHERE
{
?country wdt:P31 wd:Q6256 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?countryLabel
为什么要这么做?