I want to concatenate two columns in a table with a existing column name using mysql.
An example: I am having a column FIRSTNAME and LASTNAME
FIRSTNAME
LASTNAME
You can try this simple way for combining columns:
select some_other_column,first_name || ' ' || last_name AS First_name from customer;