backup a table in sql

Solutions on MaxInterview for backup a table in sql by the best coders in the world

showing results for - "backup a table in sql"
Denise
07 Sep 2016
1CREATE TABLE backup_table SELECT * FROM table_to_be_backed_up;