当前位置: 代码迷 >> Sql Server >> 如何把sum()字段做为查询条件,来查询记录呢
  详细解决方案

如何把sum()字段做为查询条件,来查询记录呢

热度:55   发布时间:2016-04-24 10:04:37.0
怎么把sum()字段做为查询条件,来查询记录呢
我想只查询出 sum(sl)不等于0的记录,该怎样写呢?下面的写法报错了
select     name    sum(sl) from test    where   sum(sl)<>0  group by name

------解决方案--------------------
select     name ,   sum(sl) 
from test     group by name
having sum(sl)<>0
------解决方案--------------------
select name,sum(sl) from test group by name  having sum(sl)!=0
  相关解决方案