0
SELECT X.FIRSTNAME + ' ' + X.LASTNAME as names FROM B_CUSTOMERS X;

returns the error:

ORA-01722: invalid number 01722. 00000 - "invalid number" *Cause:
*Action:

All research I have done indicates that this is a perfectly viable method for combining columns.

juergen d
  • 201,996
  • 37
  • 293
  • 362

1 Answers1

2

Use ||

SELECT X.FIRSTNAME || ' ' || X.LASTNAME as names 
FROM B_CUSTOMERS X
juergen d
  • 201,996
  • 37
  • 293
  • 362