这是我的数据库架构:
Post:
-id
-title
-body
-date
User:
-id
-name
-password
Category:
-id
-title
Post_Category:
-id
-id_post
-id_category
Post_User:
-id
-id_user
-id_post
Post_Like:
-id
-id_user
-id_post
Comment:
-id
-id_user
-id_post
-body
我项目中的“赞”就像“facebook 赞”一样。
在主页中,我需要获取最新的 50 篇帖子,其中包含有关类别、用户、喜欢、评论的信息。
有没有办法避免连接这 7 个表的复杂查询?