I want to populate a column with a sequential number but a single sequence is not sufficient. This column will behave somewhat like a 'sub id' if you will; an incrementing id for groups of records in the table.
The plan is to get the 'next number in the sequence' when inserting using a trigger, much like a normal sequence may be used. However, rather than just the 'next number', it needs to be the 'next number' in a given result set.
Consider the following example data where the display_id column is the sequence I need help managing and it is dependent on the record's value for group_name..
id | group_name | display_id ------------------------------ 5 | GroupA | 3 4 | GroupA | 2 3 | GroupA | 1 2 | GroupB | 2 1 | GroupB | 1
I'm thinking of a query like this query to get the 'next number' for GroupA:
select max(record_id) + 1
from my_records
where group_name = 'GroupA'
For GroupA it returns 4, but for GroupB it returns 3.
We could, of course, use the above query but would lose the atomic benefits of a sequence. Is there any way to manage such a sequence confidently?
We are not concerned about potentially skipping numbers (as sequences may).
Edit:
We are comfortable with a number or two being missed due to rollbacks and the like (as with sequences). However, our requirement is still that the display_id column maintain multiple sequences.
my_other_columnvalue of "some value"? – Justin Cave Feb 21 at 20:23