首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

mysql loadfile 高速导入导出数据

2013-07-04 
mysql loadfile快速导入导出数据select * from visits where month(created_at)6 into outfile f:\\visi

mysql loadfile 快速导入导出数据
select * from visits where month(created_at)=6 into outfile 'f:\\visits.txt' fields terminated by ',';

?

?

2..txt文件导入数据

load data infile 'f:\\visits.txt' into table visits fields terminated by ','

?

?

热点排行