当前位置: 代码迷 >> Sql Server >> 分不够了,求教一个容易的sql写法
  详细解决方案

分不够了,求教一个容易的sql写法

热度:28   发布时间:2016-04-24 22:43:56.0
分不够了,求教一个简单的sql写法
表:

id     name     value
1      a         0
2      b         0
3      b         1
4      c         0
5      c         0
6      a         1
7      a         0

要求:
列出所有value != 1的name,且不能重复

结果:
c


我用not in,但是看起来太傻了点:
select name from tb where name not in (select name from tb where value = 1 group by name) group by name
需要一个性能比较好的写法,谢谢

------解决方案--------------------
SELECT [name],SUM(ISNULL(value,0)) AS Value 
FROM tablename
GROUP BY [name] HAVING SUM(ISNULL(value,0))=0

------解决方案--------------------

create table #tb
(id int,name varchar(5),value int)
insert into #tb
select 1      ,'a',         0 union all
select 2      ,'b',         0 union all
select 3      ,'b',         1 union all
select 4      ,'c',         0 union all
select 5      ,'c',         0 union all
select 6      ,'a',         1 union all
select 7      ,'a',         0

select name from #tb 
group by name having MAX(value)=0


name
-----
c

(1 行受影响)

------解决方案--------------------

create table #tb
(id int,name varchar(5),value int)
insert into #tb
select 1      ,'a',         0 union all
select 2      ,'b',         0 union all
select 3      ,'b',         1 union all
select 4      ,'c',         0 union all
select 5      ,'c',         0 union all
select 6      ,'a',         1 union all
select 7      ,'a',         0

select name from #tb 
  相关解决方案