Slackbot
06/07/2023, 3:04 PMJohn Kowtko
06/07/2023, 3:37 PMselect a.channel,
a.__time,
count(b.__time) as ranknum
from wikipedia a
join wikipedia b on a.channel = b.channel
where b.__time <= a.__time
group by 1, 2
order by 1, 2
-- JohnTomasz Kisielewski
06/07/2023, 7:06 PM