Q:把一个lianxi表中的addr和email字段通过select into outfile命令形式输出到test.txt文件中
我想在test.txt文件的内容显示如下:
addr1,adb@126.com;
addd2,test@sina.com;
A:答案为:
select addr,email from lianxi to file test.txt
或者
select addr,email from lianxi to file test
就可以了,你可以试试
完全格式为:
select 字段名 from 表名 where 条件 to file 文件名(.txt/.doc等等) order by 字段名