Files
mach_examples/05_todo_sse_datastar/update_todo.sql

6 lines
118 B
MySQL
Raw Normal View History

2025-07-24 12:46:01 -05:00
update todos
set finished = {{finished}}
where user_id = {{user_id}}
and id = {{id}}
returning id, title, finished;