标签: c# datatable
我有一个数据表,其中有一个数量列&状态列。我想只对那些状态为'1'的行求和。这该怎么做?我通过数据表计算方法对列进行求和。
答案 0 :(得分:9)
dataTable.Compute("sum(amount)", "status = 1")