Skip to content

Instantly share code, notes, and snippets.

@krainboltgreene
Created August 16, 2016 18:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krainboltgreene/45bb990206d9653fe6a4b009d297217b to your computer and use it in GitHub Desktop.
Save krainboltgreene/45bb990206d9653fe6a4b009d297217b to your computer and use it in GitHub Desktop.
// 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