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
We currently support the following INSERT syntax:
INSERT INTO table_name (column1, column2) VALUES (value1, value2);
However, we don't support the simplified syntax where column names are omitted:
INSERT INTO table_name VALUES (value1, value2);
We need to implement functionality that will:
This enhancement will allow both forms of INSERT syntax to work properly.
To be completed by the assignee. Check off tasks that have been completed or are not applicable.
The text was updated successfully, but these errors were encountered:
donhardman
No branches or pull requests
Proposal:
We currently support the following INSERT syntax:
However, we don't support the simplified syntax where column names are omitted:
We need to implement functionality that will:
This enhancement will allow both forms of INSERT syntax to work properly.
Checklist:
To be completed by the assignee. Check off tasks that have been completed or are not applicable.
The text was updated successfully, but these errors were encountered: