Col BY 在 Google 工作表查询中导致解析错误
Col BY causing parse error in Google sheets query
我正在尝试 运行 google 工作表中的以下查询,但是当我尝试 select 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
我正在尝试 运行 google 工作表中的以下查询,但是当我尝试 select 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