How to add a concatenated column to the table in MySQL?
I want to take my existing columns First_Name
and Last_Name
and concatenate them to add a new column Full_Name
to the table Employees. (I am working on MySQL Workbench.)
I want to take my existing columns First_Name
and Last_Name
and concatenate them to add a new column Full_Name
to the table Employees. (I am working on MySQL Workbench.)