aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/aggregate/group_by_hop_static.sql
blob: fec507c827a54a0e1ec532d2ea67b3bfa3e91929 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* syntax version 1 */
/* postgres can not */
/* ytfile can not */
/* yt can not */

$input = SELECT * FROM AS_TABLE([
    <|"time":"2024-01-01T00:00:01Z", "user": 1|>,
    <|"time":"2024-01-01T00:00:02Z", "user": 1|>,
    <|"time":"2024-01-01T00:00:03Z", "user": 1|>,
    <|"time":"2024-01-01T00:00:01Z", "user": 2|>,
    <|"time":"2024-01-01T00:00:02Z", "user": 2|>,
    <|"time":"2024-01-01T00:00:03Z", "user": 2|>,
    <|"time":"2024-01-01T00:00:01Z", "user": 2|>,
    <|"time":"2024-01-01T00:00:02Z", "user": 2|>,
    <|"time":"2024-01-01T00:00:03Z", "user": 2|>,
    <|"time":"2024-01-01T00:00:01Z", "user": 3|>,
    <|"time":"2024-01-01T00:00:02Z", "user": 3|>,
    <|"time":"2024-01-01T00:00:03Z", "user": 3|>
]);

SELECT
    user,
    COUNT(*) as count,
    HOP_START() as start,
FROM $input
GROUP BY HOP(CAST(time as Timestamp), 'PT1S', 'PT1S', 'PT1S'), user;