querybuilder icon indicating copy to clipboard operation
querybuilder copied to clipboard

Support for `INTO OUTFILE`

Open kwon0408 opened this issue 2 years ago • 1 comments

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`;

kwon0408 avatar Feb 10 '22 05:02 kwon0408

No not really, you can use SelectRaw.

ahmad-moussawi avatar Feb 10 '22 21:02 ahmad-moussawi