I try to use 'Union' which combine two column in two table . thxYou can use the concatention operator (+):
SELECT
column1 + column2 AS myColumn
FROM
myTable
Terri|||If the columns are numeric then "+" will sum the column values.
If you do not desire this, you should use str() function
Check the below statement,
select ltrim(str(column1)) + ltrim(str(column2)) from mytable
No comments:
Post a Comment