我正在为 CMS 数据查询构建一个 url。我得到以下工作正常:
https://data.cms.gov/resource/din4-7td8.json?$$app_token=REDACTED&$where=(starts_with(nppes_provider_zip,'63703') OR starts_with(nppes_provider_zip,'63701')) AND (hcpcs_code='31623' OR hcpcs_code='31622')
当我尝试替换调用多个 hcpcs_code 值时,我收到 query.compiler.malformed 错误。以下会产生错误:
https://data.cms.gov/resource/din4-7td8.json?$$app_token=REDACTED&$where=(starts_with(nppes_provider_zip,'63703') OR starts_with(nppes_provider_zip,'63701') AND hcpcs_code in('31622','31623'))
是否有可能我错误地使用了 in(...) 函数?