SELECT
user_name|| " " || user_sname
FROM
users
i am trying to concat this two column but i has problem near the "|"
any idea?
Printable View
SELECT
user_name|| " " || user_sname
FROM
users
i am trying to concat this two column but i has problem near the "|"
any idea?
Try this instead:
- petterCode:SELECT (user_name + ' ' + user_sname) FROM users