Answers for "how to take a backup of a table in mysql"

SQL
1

mysql backup table

mysqldump db_name table_name >  table_backup.sql
Posted by: Guest on November-10-2020
0

mysql backup query

#Take backup of database
mysqldump database > backup-file.sql; 

#Restore database
mysql database < backup-file.sql;
Posted by: Guest on February-23-2021

Code answers related to "how to take a backup of a table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language