-
-
Save krainboltgreene/45bb990206d9653fe6a4b009d297217b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Select | |
FROM users | |
WHERE name LIKE '.+urtis' | |
// Insert | |
TO users | |
SET name: 'kurtis' | |
// Update | |
IN users | |
WHERE name IS 'kurtis' | |
SET name: 'kdog' | |
// Upsert | |
INTO users | |
WHERE name IS 'kurtis' | |
SET name: 'kurtis' AND age: 24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment