Merge pull request #41425 from den-crane/test/issue_41394

test for #41394
This commit is contained in:
Sema Checherinda 2022-09-19 12:27:33 +02:00 committed by GitHub
commit f50378d551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,3 @@
0 1
-2 2
-2 2

View File

@ -0,0 +1,5 @@
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;