We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
UPDATE OR REPLACE
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
SQLite's update statement supports an OR REPLACE clause.
update
OR REPLACE
UPDATE OR REPLACE t SET n = n+1;
See: https://www.sqlite.org/lang_update.html
Initially reported in sqlpage/SQLPage#695
The text was updated successfully, but these errors were encountered:
add support for sqlite's OR clauses in update statements
4bd4227
fix apache#1529
Successfully merging a pull request may close this issue.
SQLite's
update
statement supports anOR REPLACE
clause.See: https://www.sqlite.org/lang_update.html
Initially reported in sqlpage/SQLPage#695
The text was updated successfully, but these errors were encountered: