5

最近我发现了一个在查询中起作用的特殊词“skipping”。我无意中发现了它。这个公式有效:

=QUERY(A1:A11,"select A skipping 2")

它跳过 1 行,给我第 1、3、5、7 行……等等。Skipping 1返回所有行,skipping 3返回 1, 4, 7, 10...

在此处输入图像描述

我想知道 google-sheets 查询中是否有任何未在Query Language Reference中列出的表达式。如果其他人使用或发现“跳过”查询。

4

1 回答 1

3

它在您收到的关于 QUERY 语法错误的消息中可见:

"Unable to parse query string for Function QUERY parameter 2: PARSE_ERROREncountered "(" at line 1, column 41. Was expecting one of: <EOF> "where" ... "group" ... "pivot" ... "order" ...“跳过” ... "limit" ... "offset" ... "label" ... "format" ... "options" ... "," ... "*" ... "+" ... "-" ... "/" ... "%" ..."

遗憾的是,我认为这意味着我们找不到任何其他隐藏条款,因为其他所有条款都在指导页面上提及。

于 2016-03-12T19:23:47.653 回答