Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have a database with a table whose values were imported from another system. There is an auto-increment column, and there are no duplicate values, but there are missing values. For example, running this query:

select count(id) from arrc_vouchers where id between 1 and 100

should return 100, but it returns 87 instead. Is there any query I can run that will return the values of the missing numbers? For example, the records may exist for id 1-70 and 83-100, but there are no records with id's of 71-82. I want to return 71, 72, 73, etc.

Is this possible?

share|improve this question
What's wrong with having gaps in the numbering? The value of a surrogate key generally isn't meaningful; all that matters is that it's unique. If your application can't handle non-contiguous IDs, that's probably a bug in the application, not in the data. – Wyzard Dec 2 '10 at 23:38
In this case it's an issue because the data we inherited from the old system used the auto-increment number associated with a record as a key to print on a physical card that's being handed out to people. This was NOT our idea. In order to find out which cards are missing, we need to know where the gaps are in the sequential numbering. – EmmyS Dec 3 '10 at 16:42

4 Answers

up vote 26 down vote accepted

Here's version that works on table of any size (not just on 100 rows):

SELECT (t1.id + 1) as gap_starts_at, 
       (SELECT MIN(t3.id) -1 FROM arrc_vouchers t3 WHERE t3.id > t1.id) as gap_ends_at
FROM arrc_vouchers t1
WHERE NOT EXISTS (SELECT t2.id FROM arrc_vouchers t2 WHERE t2.id = t1.id + 1)
HAVING gap_ends_at IS NOT NULL
  • gap_starts_at - first id in current gap
  • gap_ends_at - last id in current gap
share|improve this answer
2  
I'm not even working for that company anymore, but this is the best answer I've seen and it's definitely worth remembering for future reference. Thanks! – EmmyS May 19 '11 at 14:12
the only problem with this, is that it doesn't "report" a possible initial gap. e.g. if the first 5 ids are missing (1 through 5) it doesn't show that... How could we show pissible gaps at the very begining? – DiegoDD Apr 12 at 21:32

Create a temporary table with 100 rows and a single column containing the values 1-100.

Outer Join this table to your arrc_vouchers table and select the single column values where the arrc_vouchers id is null.

Coding this blind, but should work.

select tempid from temptable 
left join arrc_vouchers on temptable.tempid = arrc_vouchers.id 
where arrc_vouchers.id is null
share|improve this answer
OK, 1 - 100 was just an easy way to give an example. In this case, we're looking at 20,000 - 85,000. So do I create a temp table with 65,000 rows numbered 20000 - 85000? And how do I go about doing that? I'm using phpMyAdmin; if I set the default value of the column to 25000 and make it auto increment, can I just insert 65,000 rows and it will start the auto-increment with 25000? – EmmyS Dec 2 '10 at 23:13

This may not work in MySQL, but at work (Oracle) we needed something similar.

We wrote a Stored Proc that took a number as the Max value. The Stored Proc then created a temp table with a single column. The table contained all the numbers from 1 to Max. Then it did a NOT IN join between the temp table and our table of interest.

If you called it with Max = Select max(id) from arrc_vouchers, it would then return all the missing values.

share|improve this answer

Quick and Dirty query that should do the trick:

SELECT a AS id, b AS next_id, (b - a) -1 AS missing_inbetween
FROM 
 (
SELECT a1.id AS a , MIN(a2.id) AS b 
FROM arrc_vouchers  AS a1
LEFT JOIN arrc_vouchers AS a2 ON a2.id > a1.id
WHERE a1.id <= 100
GROUP BY a1.id
) AS tab

WHERE 
b > a + 1

This will give you a table showing the id that has ids missing above it, and next_id that exists, and how many are missing between...e.g.

 
id  next_id  missing_inbetween
 1        4                  2
68       70                  1
75       87                 11
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.