码迷,mamicode.com
首页 > 数据库 > 详细

mysql大数据导出导入

时间:2016-03-15 20:54:29      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:

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大数据导出导入

标签:

原文地址:http://www.cnblogs.com/tujia/p/5280957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!