gpt4 book ai didi

php - 如果没有评论,则选择(获取)文章

转载 作者:行者123 更新时间:2023-11-30 00:03:14 25 4
gpt4 key购买 nike

我想获取一篇没有评论的文章(例如,其中 count(articleId) = 0 )。我的sql查询如下。我该如何修改?

select comment.*, article.title from article
left join comment on comment.articleid=article.articleid where article.catid=5

最佳答案

你们已经很接近了。您只需要检查是否没有匹配项:

select a.title
from article a left join
comment c
on c.articleid = a.articleid
where a.catid = 5 and c.articleid is null;

我对您的查询做了一些更改:

  • 我从选择中删除了评论列。如果没有匹配,为什么会有一堆 NULL 值。
  • 我添加了表别名(作为缩写)。这些使得查询更容易编写和阅读。
  • 我添加了comment表中没有匹配项的条件。

关于php - 如果没有评论,则选择(获取)文章,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24841681/

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