Files
mach_examples/06_todo_sse_datastar/create_todo.sql

4 lines
96 B
MySQL
Raw Normal View History

2025-07-24 12:46:01 -05:00
insert into todos(user_id, title)
values({{user_id}}, {{title}})
returning id, title, finished;