我的目标是通过Wikidata查找在夏天出生的人。 1983年有效的方法是:

FILTER((?birth > "1983-06-20"^^xsd:dateTime) && (?birth < "1983-10-31"^^xsd:dateTime))



但是我希望它可以每年进行过滤,即不仅限于1983年。
换线?
如果我想将年份跨度增加,例如1983年到2000年,该怎么做?

最佳答案

要使人们在6月20日之后和10月31日之前出生,可以使用以下两种方式之一:

SELECT ?item ?birth WHERE {
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P569 ?birth .

  # variant 1: get from 20.06 to 30.06 and from 01.07 to 31.10
  FILTER(
    (month(?birth) = 6 && day(?birth) > 19) ||
    (month(?birth) > 6 && month(?birth) < 11)
  )

  # variant 2: get from 01.06 to 31.10 and remove from 01.06 to 19.06
  FILTER(month(?birth) > 5 && month(?birth) < 11)
  FILTER(!(month(?birth) = 6 && day(?birth) < 20))

} LIMIT 1000


如果您还想增加年份(1983-2000),请在其他过滤器之前添加以下两个过滤器:

FILTER (?birth >= "1983-01-01"^^xsd:dateTime)
FILTER (?birth <= "2000-12-31"^^xsd:dateTime)

09-26 16:57