If you would like to dump the contents of a mysql table into a csv file here is the syntax:
mysqldump --tab=<directory_for_dump> --fields-enclosed-by='"' --fields-terminated-by=',' <database_name> <table_name>
obviously,replacing anything inside the with what it describes.
So far no posts