php mysql查看数据库中的总金额

时间:2014-03-12 19:00:44

标签: php mysql sql database

我希望用学生ID回显Amound行的总和,但是我有另一个列叫做#34;键入" (它应该只有入学,分期付款,其他)。

因此,当我想要回显它时,应该显示金额列的总数但不包括(其他来自"类型")

enter image description here 我想用微粒学生ID

来回应那个红盒子总数

1 个答案:

答案 0 :(得分:0)

select sum(Amount) as total_amount 
from `table_name` 
where `Type` in('Admission', 'Installment', 'Other') group by Student_ID