Files
nerak/05_todo_sse_datastar/update_todo.sql
T
2026-06-13 11:51:51 -05:00

6 lines
118 B
SQL

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