mysql大数据导出导入
Posted Tiac
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql大数据导出导入相关的知识,希望对你有一定的参考价值。
1)导出
select * from users into outfile ‘/tmp/users.txt‘;
或 select * from users where sex=1 into outfile ‘/tmp/users.txt‘;
2)导入
load data from infile ‘/tmp/users.txt‘ into table users;
注意:此方法只能导出导入表数据,表结构需要另外处理。
以上是关于mysql大数据导出导入的主要内容,如果未能解决你的问题,请参考以下文章