If I have the SQL statement
how can I have each row of this in one cell.
lets say the results of the above query returns 5 rows:
how can I write a select statement to give me:
is this possible?
thanks in advance
Code:
SELECT
dsti_proj_ref
FROM
odf_ca_project
how can I have each row of this in one cell.
lets say the results of the above query returns 5 rows:
Code:
Proj123
Proj345
Proj456
Proj567
Proj678
how can I write a select statement to give me:
Code:
Proj123Proj345Proj456Proj567Proj678
thanks in advance