I'm sure this is an easy process, but I'm at a total loss on the command to use. I want to send the contents of table x to a file x.csv. I've looked at the mysql_dump but that has way more info than I need. Just the table contents separated by commas, thanks just the facts!
Have you tried:
select ... into outfile "myfile.txt"
http://www.mysql.com/doc/en/SELECT.html
It defaults to tab delimited but CSV is also possible. This outputs the file to the server. You can't do it locally.
Mike
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]