2010年9月12日 星期日

將MySQL TABLE資料產生成文字檔

fields:分隔符號
lines:分行符號


EX:將test db下的 abc TABLE的所有資料,產生成文字檔
select * into outfile '/var/db/mysql/test.abc.txt'
fields terminated by '||'
lines terminated by '<>'
from test.abc

沒有留言: