数据库查询以在单个查询中获取不同表的计数总和
我正在Mysql数据库中编写一个查询,其中 查询 1 返回 count() 表示结果为 10 和 查询 2 返回 Count() 说结果是 30
但我想得到结果 40,这是
我获得单个查询给出结果的选项的总和。
I am writing a query in Mysql database, in which
Query 1 returns count() say result is 10
and
Query 2 returns Count() say result is 30
But I want to get the result as 40, which is sum of both
what are my options to get a single query giving me the result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用
UNION ALL
来合并相同值的计数,例如 30+30。You should use
UNION ALL
to union also the same valued counts like 30+30.