4 lines
72 B
MySQL
4 lines
72 B
MySQL
|
|
SELECT id, title, body, created_at
|
||
|
|
FROM posts
|
||
|
|
ORDER BY created_at DESC;
|