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
SQLITE.
Some stuff to add:
Enable foreign key support PRAGMA foreign_keys = ON
PRAGMA foreign_keys = ON
Turn on WAL:
PRAGMA journal_mode=WAL;
The text was updated successfully, but these errors were encountered:
A few more that I find helpful
SELECT * FROM table WHERE value IS 'correct value'
SELECT column_name As new_name FROM table WHERE value LIKE 'similar value'
SELECT name FROM sqlite_master WHERE type='table'
SELECT json_extract(json_column_name, '$.first_key.second_key) FROM myTable WHERE json_extract(json_column_name, '$.first_key.second_key) IS NOT NULL
Sorry, something went wrong.
No branches or pull requests
SQLITE.
Some stuff to add:
Enable foreign key support
PRAGMA foreign_keys = ON
Turn on WAL:
PRAGMA journal_mode=WAL;
The text was updated successfully, but these errors were encountered: