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 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. 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
Archived
This topic is now archived and is closed to further replies.