在c#中我想把数据库中满足条件的所有行的部分列取出来进行相应的计算

2024-12-18 11:00:49
推荐回答(4个)
回答1:

select sum(金钱数目字段) from 表名 where 时间 = 条件
举例:金钱数目在数据库中的字段为Pay,时间为PayTime,表名为MyTable,查询时间为‘2012-01-01’则
select sum(Pay) from MyTable where PayTime =‘2012-01-01’即可
不明白的可以再问我

回答2:

select sun(money) from table where time=‘getdate()’

回答3:

select * from table where time='......'
用list<>
然后用datatable dt=new datatable();
dt。money 就是金钱属性 你自己加一下就好了

回答4:

select 金钱在表中的字段 from 表名 where 时间在表中的字段=xxx