fork download
  1. SELECT col_1, ROW_NUMBER() OVER(PARTITION BY col_1 ORDER BY col_1 DESC) FROM table_1 ORDER BY col_1
Success #stdin #stdout #stderr 0s 2964KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: incomplete SQL: SELECT col_1, ROW_NUMBER() OVER(PARTITION BY col_1 ORDER BY col_1 DESC) FROM table_1 ORDER BY col_1