关于 json:使用 ImportJSON 自定义函数检索数据子集

Retrieve a subset of data using ImportJSON custom function

我正在使用 Trevor Lohrbeer 的 importjson() 自定义函数将此 JSON 源中的一些数据导入 Google 表格。

我不希望提供所有信息;我只想要列 E、V、W、X、AA、AB、AC、AD。

在意识到我不知道我在用这个参数做什么之前尝试了一些事情:

1
=importjson("http://www.pgatour.com/data/r/stats/current/102.json","This","AndThis")

如何修改此函数以仅检索上述项目?


您可以使用 QUERY 函数轻松完成此操作,对 importjson() 调用的结果进行后过滤。:

1
=QUERY(importjson("http://www.pgatour.com/data/r/stats/current/102.json"),"select Col5, Col22, Col23, Col24, Col27, Col28, Col29, Col30")