我在 php/mysql 中创建了一个简单的博客,它在主页上显示最新的 100 篇文章,并且每篇文章都显示评论的编号。
这是伪代码:
Mysql query to get latest 100 posts.
While cicle:
Get title and body of each post.
Mysql query to get the comments's number of the post.
数据库结构:
Post:
-id
-title
-body
-date
Comments:
-id
-id_post
-id_user
-body
-date
有没有办法避免 100 个查询?