如何对同一数据库中三个表的三个字段数据求和
我有一个名为 Sound 的表,就像这个
id 名称 hit
- 100 sam 12
- 101 zad 10
和其他名为 SoundK 的表,就像这个
id 名称 hit
- 102 qwe 12
- 103 rty 10
和其他名为 SoundD 的表,就像这个
id 名称 hit
- 104 asd 12
- 105 xcv 10
那么如何计算所有三个表的字段(命中)总数Sound+SoundK+SoundD
提前感谢
所有 RGDS
I have table called Sound like this
id name hit
- 100 sam 12
- 101 zad 10
and other table caled SoundK like this
id name hit
- 102 qwe 12
- 103 rty 10
and other table caled SoundD like this
id name hit
- 104 asd 12
- 105 xcv 10
so how to calculate the fields (hit) as total for all three tables Sound+SoundK+SoundD
Thanks in advance
RGDS for All
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般而言,您可以将三个表合并在一起,因为它们共享相同的数据,然后进行求和。
In a generic way, you can union the three tables together since they share the same data and then do a sum.