Search This Blog

27 January 2012

Query to find missing Id's in MySQL



SELECT a.id+1 AS start, MIN(b.id) - 1 AS end
FROM testtable AS a, testtable AS b
WHERE a.id < b.id
GROUP BY a.id
HAVING start < MIN(b.id)

No comments:

Post a Comment