(1) my exporting from mysql command line
mysql> SELECT *
> FROM
> INTO OUTFILE 'file path'
> FIELDS TERMINATED BY '|';
will select all columns from table
and save the output into
example 1:
SELECT * FROM CategoryInformation
INTO OUTFILE 'c:\CategoryInformation.csv'
FIELDS TERMINATED BY ';'
ENCLOSED BY '\"'
ESCAPED BY '\'
LINES TERMINATED BY '\r\n'