Skip to content

Instantly share code, notes, and snippets.

@swlkr
Last active November 6, 2017 19:28
Show Gist options
  • Save swlkr/718ca5735a0388d2d7a33bda221a8db6 to your computer and use it in GitHub Desktop.
Save swlkr/718ca5735a0388d2d7a33bda221a8db6 to your computer and use it in GitHub Desktop.
-- name: insert
-- fn: first
insert into items (id, name, created_at)
values (:id, :name, :created_at)
returning *
-- name: update
-- fn: first
update items
set name = :name
where id = :id
returning *
-- name: delete
-- fn: first
delete
from items
where id = :id
returning *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment