Environment: Oracle.
Example Data:
select col1, col2, col3 from tableName
produces this:
COL1 COL2 COL3
The Word Was
Value1 Value2 Value3
I Am Table
I would like to have something like this:
select (col1 + col2 + col3) as GroupCol from tableName
to produce this:
GROUPCOL
TheWordWas
Value1Value2Value4
IAmTable
One column that encompasses three columns together as one.
This will be used to append ten different location columns together into on field when running a select statement. This has to be at the SQL level and not above it in some report tier.