数据库中导出某一个表中需要的字段到文件中是公司中经常要做到的事,那怎么实现呢?
比如你要查询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路径可以导出数据
数据库中导出表中相应字段到指定文件中,布布扣,bubuko.com
原文地址:http://blog.csdn.net/benjamin_whx/article/details/27491057