Created
October 22, 2011 00:24
-
-
Save nitindhar7/1305333 to your computer and use it in GitHub Desktop.
Array Agg PSQL
This file contains 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 user.id AS user_id, ARRAY_AGG(group.id) AS group_ids | |
FROM users | |
LEFT JOIN groups ON group.user_id = group.id | |
GROUP BY user.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment