in(...)
使用 SoQL(Socrata 查询语言),我们可以使用该函数过滤数据集的值。使用芝加哥开放数据门户的 socrata 网站显示了一个示例示例。
但是,当我使用同一数据门户的不同数据集尝试此功能时,我没有得到答案。这是我使用的 SoQL
https://data.cityofchicago.org/resource/uupf-x98q.json?$where=police_district in('12','24')
我收到以下错误。
{
"code" : "query.compiler.malformed",
"error" : true,
"message" : "Error, could not parse SoQL query \"select * from #uupf-x98q where police_district in('12','24')\"",
"data" : {
"query" : "select * from #uupf-x98q where police_district in('12','24')"
}
}