标签:blog http sp 2014 log line bs sql mysql
select .... outfile ‘file_path‘ fields terminate by ‘\t‘ lines terminate by ‘\r\n‘ from table_name;
---------------------------------------------------------------------------------------------------------------------------------------------------
例子:
select * into outfile ‘E:/3.txt‘ fields terminated by ‘\t‘ lines terminated by ‘\r\n‘ from employee;
MYSQL select ....outfile.....from.....
标签:blog http sp 2014 log line bs sql mysql
原文地址:http://www.cnblogs.com/JiangLe/p/4012971.html