in reply to Re: Select DB data into CSV file
in thread Select DB data into CSV file
Mysql's "INTO OUTFILE"
SELECT ... INTO OUTFILE writes to a file on the database server's filesystem (if permitted), whereas a classic SELECT + Text::CSV as proposed in Re^3: Select DB data into CSV file writes to the client's filesystem. And SELECT ... INTO OUTFILE is not portable across databases.
Alexander
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Select DB data into CSV file
by kschwab (Vicar) on Dec 20, 2018 at 16:58 UTC |