stevieontario Posted February 14, 2011 Share Posted February 14, 2011 Evening Freaks, I am trying to identify gaps in a column that holds hourly versions of files -- i.e., this column contains only numbers between 1 and 24. Rows are added to this table every hour, so that this column -- called Version -- would, if this were a perfect world, always contain repeating sequences of 24 rows. The Version column would always contain numbers in sequence, 1 to 24, and repeating until the end of time. Of course in the real world, rows sometimes don't get added. I want to find the instances where there is a gap, and then manually add the rows. Any idea on what kind of query would help me find these gaps? Thanks in advance, Steve Quote Link to comment https://forums.phpfreaks.com/topic/227586-how-to-find-gaps-in-sequential-non-auto-increment-column/ Share on other sites More sharing options...
fenway Posted February 14, 2011 Share Posted February 14, 2011 You can left join to a derived table with 24 such rows. Quote Link to comment https://forums.phpfreaks.com/topic/227586-how-to-find-gaps-in-sequential-non-auto-increment-column/#findComment-1173891 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.