Answers for "sql concate two columns first and last"

SQL
1

sql concate two columns first and last

SELECT CONCAT(c.FIRSTNAME, ',', c.LASTNAME) AS FIRSTNAME,
       c.*
FROM   `customer` c;
Posted by: Guest on March-17-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language