我有一个DataTable有5列:
sl, Doctor, Appointments, fees
DataTable包含4行。
我想将费用总额列为“总费用”
这样做的最佳方式是什么?
答案 0 :(得分:0)
您需要使用SUM()
功能。如果您的表名是DataTable,则这是您的查询:
SELECT SUM(fees) as 'Total fees' FROM DataTable
阅读更多内容:
答案 1 :(得分:0)
如果您使用DataTable
插件显示表格,请尝试计算总和
var table = $('#example').DataTable();
table.column( 4 ).data().sum(); // as fees is your fourth column
更多信息:
http://www.datatables.net/plug-ins/api/sum()#
https://datatables.net/examples/plug-ins/api.html
对于正常的数据库操作,尝试使用SUM
聚合方法
SELECT SUM(fees) as 'Total fees' FROM your_table_name