select * into outfile '/tmp/zips.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
from zips;
Sunday, April 17, 2005
Subscribe to:
Post Comments (Atom)
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks
1 comment:
alter table tablename engine=csv
this will also give you same thing.
Post a Comment