You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems that SELECT ... INTO OUTFILE ... is not supported in the parser, although supported in MySQL.
ParseException: Encountered: <K_INTO> / "INTO", at line 1, column 21, in lexical state DEFAULT.
Was expecting one of these terminals within expansion starting at 1054:23:
<EOF> (inside 1054:23)
SQL Example:
SELECT * FROM users INTO OUTFILE '/tmp/users.csv'
FIELDS TERMINATED BY ',' ENCLOSED BY '"'
LINES TERMINATED BY '\n';