Hi, Suppose there are two tables-
T1 T2
--- ----------
A A | 1
A A | 2
A A | 3
How to write a query that returns the results as following
Col1 Col2
---- -----
A 1,2,3
(One row)
Thanks in advance