Re: Export Lists to CSV
by mflorell » Fri Nov 04, 2016 5:14 am
You'll have to do that from the MySQL commandline. Something like this:
SELECT * from vicidial_list INTO OUTFILE "lead_data.txt";
Then you can grab the file from your database's data directory and import it as tab-delimited(which is the default when you do "into outfile" in mysql).
SELECT * from vicidial_list INTO OUTFILE "lead_data.txt";
Then you can grab the file from your database's data directory and import it as tab-delimited(which is the default when you do "into outfile" in mysql).
No hay comentarios:
Publicar un comentario