标签:
数据库中导出某一个表中须要的字段到文件里是公司中常常要做到的事,那怎么实现呢?
比方你要查询enterpriseaics中的全部字段的值到d盘的aa.txt中去,注:aa.txt不能存在,否则会报错。
<span style="font-size:18px;">select * from enterpriseaics into outfile 'd:\\aa.txt' ;</span>
那么就要加上以下的一段话:
select * from enterpriseaics into outfile 'd:\\aa.txt' fields terminated by ',' enclosed by '"' ;
select * from enterprisetype into outfile '/var/lib/mysql/enterprisetype.txt' fields terminated by ',' enclosed by '"' ;本人亲測,这个/var/lib/mysql路径能够导出数据
标签:
原文地址:http://www.cnblogs.com/yxwkf/p/5182900.html