This message was deleted.
# general
s
This message was deleted.
j
for whoever will be looking into this one, here is a simple example using wikipedia:
Copy code
select __time, channel, page, count(*),
      count(*) over (order by __time rows between 1 following and 1 following)  
      from wikipedia
group by 1, 2, 3