|
|
|
A simple JOIN that will determine gaps in a set of sequential values. This query will basically give the sequence number after which a gap is present. |
Click here to copy the following block | CREATE TABLE #t ( seq int identity ); WHILE( SELECT COALESCE( MAX( seq ) , 0 ) FROM #t ) < 18 INSERT #t DEFAULT VALUES DELETE #t WHERE seq%3 = 0 DELETE #t WHERE seq = 11 go SELECT * FROM #t
SELECT a.seq AS GapAfterSeq FROM #t a WHERE NOT EXISTS( SELECT * FROM #t b WHERE b.seq = a.seq + 1 ) and a.seq < ( SELECT MAX( seq ) FROM #t )
DELETE #t WHERE seq = 1 SELECT * FROM #t
GO
DECLARE @rangemin int , @rangemax int SELECT @rangemin = 1 , @rangemax = 20
SELECT MIN( seq ) + 1 AS NextSeq FROM ( SELECT @rangemin - 1 AS seq WHERE NOT EXISTS( SELECT * FROM #t WHERE seq = @rangemin ) UNION ALL SELECT a.seq FROM #t a WHERE NOT EXISTS( SELECT * FROM #t b WHERE b.seq = a.seq + 1 And b.seq BETWEEN @rangemin And @rangemax ) And a.seq >= @rangemin And a.seq < @rangemax ) AS t
GO DROP TABLE #t; GO |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|