Reputation: 37
I'm having trouble adding three columns: first name, second name and surname together for example "Bob Bobby Smith" and returning them to display in select list item in Oracle Apex. Can't find anything on the internet, i'm not even sure if it's possible.
Upvotes: 0
Views: 191
Reputation: 1269873
Are you looking for ||
, the string concatenation operator?
select (firstname || ' ' || secondname || ' ' || surname) as fullname
from t;
Upvotes: 1