我正在尝试在Google表格中运行以下查询,但在尝试选择BY列时却收到解析错误。没有此列,它将按预期运行。
查询如下:
=QUERY('Applications received'!B:DL,"Select B,CT,CU,CV,CW,CX,BY where B is not null order by CX")
任何帮助深表感谢!
BY列需要使用以下命令进行转义`:
=QUERY('Applications received'!B:DL,
"select B,CT,CU,CV,CW,CX,`BY`
where B is not null
order by CX")
https://developers.google.com/chart/interactive/docs/querylanguage#reserved-words
本文收集自互联网,转载请注明来源。
如有侵权,请联系 [email protected] 删除。
我来说两句