表中 的数据 备份 和 恢复
Posted 吕恒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表中 的数据 备份 和 恢复相关的知识,希望对你有一定的参考价值。
-- 建表 create table emp( sid int(8) primary key, sname varchar(10), sex varchar(2), chu varchar(50), classno varchar(50) ); -- 表中的数据 insert into emp (sname,sex,chu,classno) values (‘张石瑞‘,‘男‘,‘1996-01-02‘,‘201701‘), (‘李佛‘,‘女‘,‘1998-05-15‘,‘201702‘), (‘王法无‘,‘男‘,‘1991-03-20‘,‘201702‘) -- 数据的备份 将 emp 表中的数据 备份的 D 盘中 select * into outfile ‘d:1.txt‘ from emp -- 恢复表中的数据 load data infile ‘d:1.txt‘ replace into table emp -- 删除表中的数据 delete from emp; -- 查询 select * from emp;
以上是关于表中 的数据 备份 和 恢复的主要内容,如果未能解决你的问题,请参考以下文章