Files
mach_examples/12_rails_15_min_blog_external/get_posts.sql
2026-03-27 11:20:42 -05:00

4 lines
72 B
SQL

SELECT id, title, body, created_at
FROM posts
ORDER BY created_at DESC;