We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SELECT ... INTO OUTFILE
Is your feature request related to a problem? Please describe:
No.
Describe the feature you'd like:
From MySQL documentation 13.2.10.1 SELECT ... INTO OUTFILE Syntax:
SELECT ... INTO OUTFILE writes the selected rows to a file. Column and line terminators can be specified to produce a specific output format.
It helps us to store the query result in a CSV form.
Here is a discarded PR that may as a reference for you.
NOTE: do not support INTO DUMPFILE and INTO VARIABLES, supporting the INTO OUTFILE syntax is enough in this issue.
INTO DUMPFILE
INTO VARIABLES
INTO OUTFILE
The text was updated successfully, but these errors were encountered:
Do you mean supporting INTO DUMPFILE and VARIABLES is fine but not necessary?
Sorry, something went wrong.
NOTE: do not support INTO DUMPFILE and INTO VARIABLES, supporting the INTO OUTFILE syntax is enough in this issue. Do you mean supporting INTO DUMPFILE and VARIABLES is fine but not necessary?
Emm yes.
Successfully merging a pull request may close this issue.
Feature Request
Is your feature request related to a problem? Please describe:
No.
Describe the feature you'd like:
From MySQL documentation 13.2.10.1 SELECT ... INTO OUTFILE Syntax:
It helps us to store the query result in a CSV form.
Here is a discarded PR that may as a reference for you.
NOTE: do not support
INTO DUMPFILE
andINTO VARIABLES
, supporting theINTO OUTFILE
syntax is enough in this issue.The text was updated successfully, but these errors were encountered: