Files
mach_examples/06_todo_sse_datastar/update_todo.sql
2026-03-27 13:13:46 -05:00

6 lines
118 B
SQL

update todos
set finished = {{finished}}
where user_id = {{user_id}}
and id = {{id}}
returning id, title, finished;