backup useful only need

Table Backup In Mysql

mysqlshow tables;

+——————————-+

| Tables_in_test |

+——————————-+

1 row in set (0.00 sec)

mysqlcreate table test (id int, name varchar(50));

Query OK, 0 rows affected (0.01 sec)

mysqlinsert into test values (1, “Amit”), (2, “Bala”), (3, “Chandra”);

Query OK, 3 rows affected (0.01 sec)

mysqlselect * from test;

+——-+———+

| id | name |

+——-+———+

| 1 | Amit |

| 2 | Bala |

| 3 | Chandra |

+——-+———+

3 rows in set (0.00 …