ClickHouse/tests/queries/0_stateless/01655_window_functions_bug.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
224 B
MySQL
Raw Normal View History

2022-09-16 22:54:40 +00:00
SELECT round((countIf(rating = 5)) - (countIf(rating < 5)), 4) as nps,
dense_rank() OVER (ORDER BY nps DESC) as rank
FROM (select number as rating, number%3 rest_id from numbers(10))
group by rest_id
order by rank;