mysql - 我用navicat备份数据库,再还原到我的电脑上的时候,为什么只有表,没有数据?(表也丢失了一个)
PHP中文网
PHP中文网 2017-04-17 13:29:46
0
4
3059
PHP中文网
PHP中文网

认证0级讲师

reply all(4)
伊谢尔伦

I agree with the first floor, navicat has two modes. You have to choose the one where the frame and data are saved together. It is best to import it into navicat to avoid errors;

刘奇

There are two options for backup, table frame and table data; you chose the wrong option

黄舟

Use the command. There are so many types of MySQL clients that it’s hard to tell how to operate them

mysqldump -u root -p test blog > E:\output.sql  -- 导出test.blog表,省略-d表示导出表结构及数据
mysqldump -u root -p -d test blog >E:\output.sql  -- 导出test.blog表,-d表示仅导出表结构
黄舟

Direct command line is better

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template