1
0
Fork 0
justguestbook/pkg/database/sqlite/queries/replyUpdate.sql

6 lines
143 B
SQL

UPDATE OR REPLACE `reply`
SET
`created` = ?,
`message` = ?
WHERE `entry_id` = ?
RETURNING `entry_id`, `created`, `message`;