gpt4 book ai didi

sql - 我应该如何加入这些表?

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

这些是表格:

threads:
id, date, title, text


comments:
id, thread_id, date, comment

如何将最后评论的帖子列在顶部?

这是目前的样子:

$threads = mysql_query("SELECT id, title FROM threads ORDER BY date ASC");

while ($thread = mysql_fetch_assoc($threads)) {

echo $thread['title'];

}

伙计们,我无法弄清楚这一点。因此,如果有人可以帮助我,那就太好了!

干杯!

最佳答案

试试这个:

SELECT DISTINCT t.id, t.title
FROM threads t LEFT JOIN comments c ON t.id = c.thread_id
ORDER BY c.date DESC

如果您的主题没有评论,则需要左连接。

关于sql - 我应该如何加入这些表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1242562/

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