这是我的表数据Student
这是我的查询-
SELECT id, SUM( maths + chemistry + physics ) AS total, maths, chemistry, physics
FROM `student`
但它只抛出一行
id total maths chemistry physics
118 760 55 67 55
虽然我想对所有ID应用总和....让我知道我如何实现这一目标?
最佳答案
总和是一个汇总函数。您不需要使用它。这是简单的查询-
select *,(maths + chemistry + physics ) AS total FROM `student`