Supplementary question.
Given that I have gone for the "CREATE TABLE..." option, what code would I need to write to copy them back into the original table from the backup table, after deleting them from the original table?
I'm going to have a go at writing it...please don't laugh if I get it wrong.
INSERT INTO original_table
SELECT * FROM backup_table
Is it that simple?
Given that I have gone for the "CREATE TABLE..." option, what code would I need to write to copy them back into the original table from the backup table, after deleting them from the original table?
I'm going to have a go at writing it...please don't laugh if I get it wrong.
INSERT INTO original_table
SELECT * FROM backup_table
Is it that simple?


Comment