Files
mach_examples/05_todo/get_todos.sql

4 lines
67 B
MySQL
Raw Normal View History

2025-07-24 12:46:01 -05:00
select id, title, finished
from todos
where user_id = {{user_id}};