gpt4 book ai didi

php - 在这种情况下如何避免进行 100 次查询?

转载 作者:行者123 更新时间:2023-11-29 03:54:23 25 4
gpt4 key购买 nike

我在 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 次查询?

最佳答案

这是一个相当简单的查询:

SELECT p.id, p.title, p.body. p.date, COUNT(c.id) AS comment_count
FROM Post p
LEFT JOIN Comments c ON p.id=c.id_post
GROUP BY p.id, p.title, p.body. p.date
ORDER BY p.id DESC
LIMIT 100

(请注意它未经测试,以此为起点。)

我知道人们普遍认为数据库不过是一个奇特的文件系统,SELECT * FROM data 是您需要了解的所有 SQL,但需要花一些时间学习基本的 SQL这绝对值得付出努力。

关于php - 在这种情况下如何避免进行 100 次查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16335145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com