Support for `INTO OUTFILE`
Closed this issue · 1 comments
kwon0408 commented
Is the INTO OUTFILE
feature currently supported? I could not find this from the current documentation.
What I want to do is like:
SELECT *
INTO OUTFILE 'c:/some-folder/users-2022-02-10.csv'
FIELDS ENCLOSED BY '"' TERMINATED BY ',' ESCAPED BY '"'
LINES TERMINATED BY '\r\n'
FROM `users`;
ahmad-moussawi commented
No not really, you can use SelectRaw
.