0
How to make an SQL query in this table:
ID Col2 Col1
-- ---- ----
11 1 A
12 2 D
13 3 G
14 1 B
15 2 E
16 3 H
17 1 C
18 2 F
19 3 I
To return this result:
1 A B C
2 D E F
3 G H I
Is that even possible?
You’re right... corrected the table. Thank you.
– Mamga
STRING_AGG http://www.postgresonline.com/journal/archives/191-String-Aggregation-in-PostgreSQL,-SQL-Server,-and-Mysql.html
– Motta