MySQL, add column 'FullNameReverseOrder' using data from fullname column and changing (FName, LName) to (LName, FName)
I want to add a new column called FullNameReverseOrder to a table called NameTable where the info for the FullName is in FirstName LastName order and the FullNameReverseOrder will hold the LastName FirstName order. this is a table you can…