如何在 Google 表格查询中 select 数组中的特定列?

How to select specific columns from array in Google Sheets query?

假设您只想 select 第一列。不能,它说 'NO_COLUMN: A'.

=query({O2:P4;O8:P9},"select A")  

很容易 select 所有列。

=query({O2:P4;O8:P9},"select *")

使用:

=QUERY({O2:P4;O8:P9}, "select Col1")