5.4.2 查询缺号分布情况的示例.sql--测试数据
CREATE TABLE tb(col1 varchar(10),col2 int)
INSERT tb SELECT 'a',2
UNION ALL SELECT 'a',3
UNION ALL SELECT 'a',6
UNION ALL SELECT 'a',7
UNION ALL SELECT 'a',8
UNION ALL SELECT 'b',1
UNION ALL SELECT 'b',5
UNION ALL SELECT 'b',6
UNION ALL SELECT 'b',7
GO--缺号分布查询
SELECT a.col1,start_col2=a.col2+1,
end_col2=(
SELECT MIN(col2) FROM tb aa
WHERE col1=a.col1 AND col2>a.col2 
AND NOT EXISTS(
SELECT * FROM tb WHERE col1=aa.col1 AND col2=aa.col2-1))
-1
FROM(
SELECT col1,col2 FROM tb
UNION ALL --为每组编号补充查询起始编号是否缺号的辅助记录
SELECT DISTINCT col1,0 FROM tb
)a,(SELECT col1,col2=MAX(col2) FROM tb GROUP BY col1)b
WHERE a.col1=b.col1 AND a.col2<b.col2 --过滤掉每组数据中,编号最大的记录
AND NOT EXISTS(
SELECT * FROM tb WHERE col1=a.col1 AND col2=a.col2+1)
ORDER BY a.col1,start_col2
/*--结果
col1       start_col2  end_col2    
-------------- -------------- ----------- 
a          1           1
a          4           5
b          2           4
--*/

解决方案 »

  1.   

    declare @T table(num int)
    insert @T select 1 
    insert @T select 3 
    insert @T select 4 select num=num+1
     from @T a 
    where not exists(select 1 from @T where num=a.num+1)
    and num+1<=(select max(num) from @T)--中间少多个是最后用范围
      

  2.   

    select   top   1   num+1   
      from   tablename  T1   
      where   not   exists     
                  (select   num   from   tablename  T2   where   T2.num=T1.num+1)   
      order   by   num这个答案估计最接近了~~

    还是谢谢楼上的兄弟!
    马上结贴给分