MySQL如何计算多个表的行数
如何计算 2 个表中的所有行,其中...
`approved` == '0'
?
How can I count all the rows from 2 tables where...
`approved` == '0'
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何计算 2 个表中的所有行,其中...
`approved` == '0'
?
How can I count all the rows from 2 tables where...
`approved` == '0'
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您需要对联合进行聚合:
还有其他方法,但这非常清楚地表明您的意图,特别是以这种方式命名列。
希望这有帮助
You need to do an aggregate on a union:
There are other ways but this shows your intent very clearly, especially naming the columns this way.
Hope this helps
您可以对每个表执行此操作:
SELECT count(*) FROM table WHEREroved = 0
您可以将其合并到一个查询中,但这会变得更加复杂。使用子查询或联合。
You would do this for each table:
SELECT count(*) FROM table WHERE approved = 0
You could combine it into one query but that gets more complicated. Either use a subquery or union.
这个答案将帮助您:
This answer will help you: