I'm running a windows machine (IIS6), with MySQL and MySQL Administrator installed. Unfortunately, phpmyadmin isn't installed. I need to export a MySQL database into .csv format. Does anyone know what the easiest way to do this is?
since csv is a text file you can use: SELECT * INTO OUTFILE 'YOUR_FILE.CSV' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' FROM YOUR_TABLE;
I haven't used MySQL front before. Is it better than MySQL administrator? A quick google search says it has been discontinued: http://www.mysqlfront.de/ Is it now heidiSQL? http://www.heidisql.com/
Yes I think it was discontinued. I am using some older version and I preffer them over MySQL administrator.. This is obviously just my choice