Answered
Combining Two Columns Into One
Hi guys,
Is it possible for a query to combine two columns into one? For example, lets say I have the following query:
SELECT ID, FIRST_NAME, LAST_NAME
FROM EMPLOYEES
I'd like the output to have two columns: one containing the ID and the other containing FIRST_NAME followed by a space followed by LAST_NAME. I know how to do this outside of the query using coldfusion, but it would save me a lot of work if there is some way the query could do it for me.
Is it possible for a query to combine two columns into one? For example, lets say I have the following query:
SELECT ID, FIRST_NAME, LAST_NAME
FROM EMPLOYEES
I'd like the output to have two columns: one containing the ID and the other containing FIRST_NAME followed by a space followed by LAST_NAME. I know how to do this outside of the query using coldfusion, but it would save me a lot of work if there is some way the query could do it for me.