Mysql
 sql >> Database >  >> RDS >> Mysql

query mysql - post del blog e commenti con limite

MySQL LIMIT

SELECT * FROM posts_table LIMIT 0, 15

E per estrarre i commenti più recenti:

SELECT * FROM comments_table ORDER BY comment_timestamp DESC LIMIT 0, 2

Lascio a te il compito di UNIRE le due query insieme in qualche modo...