How do add the concatenated firstname column and lastname column from a table with 100 rows and then add it fullname column each of the concatenated first name and last name
I tried:
INSERT INTO `table1` (`fullname`) VALUES (CONCAT(first_name,last_name))
What it did is that it added a new row with nothing in it it didn't add each row of 100. What I want is that for each of the rows of first and last name there is a fullname that is concatenated.