Created
September 7, 2017 04:33
-
-
Save khoden/7f04d180c6d05f6f41a0ea9bb89c86c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| array_agg(s), | |
| rn | |
| FROM (SELECT | |
| s, | |
| ((row_number() | |
| OVER ()) - 1) / 10 + 1 AS rn | |
| FROM generate_series(1, 100) s) g | |
| GROUP BY rn | |
| ORDER BY rn; |
Author
khoden
commented
Sep 7, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment