Maybe someone can help me with this.
I have a MYSQL table with first name and last name. Some rows were added with last name in the first name column and first name in the last name column.
How can I flip these. I tried a simple update SET firstname = lastname, lastname = firstname
but that doesn't work.
Any help would be great.