Importrange查询:持续时间条件在10秒以下

时间:2019-07-31 05:43:17

标签: google-sheets google-sheets-formula google-sheets-query google-query-language importrange

我正在尝试对此Google工作表file

进行查询(导入范围)

我想根据3种条件过滤数据:

  1. Col5='GC' OR
  2. Col5='CL' AND
  3. Col4中,时间必须少于10秒。

我已经能够在1分钟的时间内对这些数据进行查询:

=QUERY(IMPORTRANGE("18OOzibH9rmuzNxOPo_EbZ1rhF32qESuvPa4x4pB1BmA", "data!A1:Q"), 
 "where Col5 matches 'CL|GC' 
    and minute(Col4) < 1", 1)

但是,如果我仅将“ second(Col4)<10”中的“ minute(Col4)<1”更改为“ {3}},则您会看到here,其中前四行超出了标准。

1 个答案:

答案 0 :(得分:0)

=QUERY(IMPORTRANGE("18OOzibH9rmuzNxOPo_EbZ1rhF32qESuvPa4x4pB1BmA", "data!A1:Q"), 
 "where Col5 matches 'CL|GC' 
    and minute(Col4) < 1 
    and second(Col4) < 10", 1)

0