Suppose you have the following tables:
Is there a way to query the two tables (perhaps a weird join) that would return the following?:
Basically, a join-like query that would bundle multiple data, like that in t1.c2, into a single row?
Thanks in advance...
Code:
t1
_c1_c2_
| a | 1 |
| a | 9 |
| a | 4 |
t2
_c1____c2__
| a | alpha |
| b | beta |
Is there a way to query the two tables (perhaps a weird join) that would return the following?:
Code:
_t2.c1___t2.c2___(something here)_
| a | alpha | 1,9,4 |
Basically, a join-like query that would bundle multiple data, like that in t1.c2, into a single row?
Thanks in advance...