Last active
November 6, 2017 19:28
-
-
Save swlkr/718ca5735a0388d2d7a33bda221a8db6 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
-- 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