
Originally Posted by
moz_k2
to make to make two columns into one
kani lang nga format gamita --> (table1.colA + ', ' + table2.colB) as newColumn
SELECT (table1.colA + ', ' + table2.colB) as newColumn, table1.colC, table3.colD
FROM ....the rest of the sql statement
You're making 2 cols into 1 but the problem is making multiple rows or result set into one.
E,g,
Result
1
2
3
to
Result
1, 2, 3