Hi,
I'm trying to make query selecting popular events chains.
Does ClickHouse have something like Transact-SQL function
ROW_NUMBER() OVER(PARTITION BY)?
Also, that kind of queries could be done if ClikHouse JOIN supports not only equal conditions in USING section.
I've tried to use rowNumberInAllBlocks() and rowNumberInBlock() functions but blocks seems to can't be able to defined manually.
Maybe there are some specific tricks that can be used to calculate most popular events chains?