I have one requirement to concat user first_ name, and last_name with space in between in Oracle.
Ex: first_name is 'Hopkins'
and last_name is 'Joe'
.
Full name should be printed as Hopkins Joe.
I'm using Oracle 11g and it is working in SQL query, but not working in stored procedure.
Try this:
SELECT CONCAT(CONCAT(first_name, ' '),last_name)
OR
SELECT first_name || ' ' || last_namefrom;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With