只有10分了, 求一SQL语句 !
sqlserver 有如下数据
ID
0001
0001
0002
0002
0001
0001
实现效果
ID
0001
0002
0001
只有相邻的数据进行筛选!怎么处理啊,谢谢大家了!
------解决方案--------------------select IDENTITY(int,1,1) as id0,id into #
from tablename
select a.id from # a left join # b
on a.id=b.id and b.id0=a.id0+1
where b.id is null