查找某一分组

sbsb174 2009-03-19 12:49:48
create table t1(id int, [action] nvarchar)
insert into t1
select 1,'a' union
select 1,'b' uninon
select 1,'c' union
select 1,'over' union
select 2,'a' union
select 2,'b' union
select 2,'over' union
select 3,'a' union
select 3,'b' union
select 4,'a'

此表记录每个id的一组操作,如果action为over表示操作完成
要求:查找出action不为over的id出来,即没有完成的id
结果为:3,4
...全文
46 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
htl258_Tony 2009-03-19
  • 打赏
  • 举报
回复
create table t1(id int, [action] nvarchar(300)) 
insert into t1
select 1,'a' union
select 1,'b' union
select 1,'c' union
select 1,'over' union
select 2,'a' union
select 2,'b' union
select 2,'over' union
select 3,'a' union
select 3,'b' union
select 4,'a'

select distinct id from t1 where id not in(select id from t1 where [action] ='over')
drop table t1

id
-----------
3
4

(所影响的行数为 2 行)
htl258_Tony 2009-03-19
  • 打赏
  • 举报
回复
select * from tb1 where id in(select id from tb1 where [action] <>'over')
htl258_Tony 2009-03-19
  • 打赏
  • 举报
回复
create table t1(id int, [action] nvarchar(300)) 
insert into t1
select 1,'a' union
select 1,'b' union
select 1,'c' union
select 1,'over' union
select 2,'a' union
select 2,'b' union
select 2,'over' union
select 3,'a' union
select 3,'b' union
select 4,'a'

select distinct id from t1 a where not exists(select 1 from t1 where id = a.id and [action]='over')

drop table t1

id
-----------
3
4

(所影响的行数为 2 行)
dawugui 2009-03-19
  • 打赏
  • 举报
回复
create table t1(id int, [action] nvarchar(10)) 
insert into t1
select 1,'a' union
select 1,'b' union
select 1,'c' union
select 1,'over' union
select 2,'a' union
select 2,'b' union
select 2,'over' union
select 3,'a' union
select 3,'b' union
select 4,'a'

select distinct id from t1 where id not in (select id from t1 where [action] = 'over')

drop table t1

/*
id
-----------
3
4

(所影响的行数为 2 行)
*/

22,233

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server 疑难问题
社区管理员
  • 疑难问题社区
  • 尘觉
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧