L
lcc
I am creating a database to hold a record of risks
For the record number I need to sequentially number each record within
each group once the group type has been determined
Example
Group 1 Design
Group 2 Security
Group 3 Privacy
Group 1 first record created for that group type would be 1.1, next
1.2, next 1.3 etc
Group 3 first record would be 3.1, next would be 3.2 etc
There are currently 30+ risk group types, therefore I do not want 30
different tables, just the one to contain all risk group types
Records entered at any time can be from any group type, so you could
have a group 6, then a group 9, then another group 9, then a group 1
I am open to suggestions on how to approach this numbering scenario
For the record number I need to sequentially number each record within
each group once the group type has been determined
Example
Group 1 Design
Group 2 Security
Group 3 Privacy
Group 1 first record created for that group type would be 1.1, next
1.2, next 1.3 etc
Group 3 first record would be 3.1, next would be 3.2 etc
There are currently 30+ risk group types, therefore I do not want 30
different tables, just the one to contain all risk group types
Records entered at any time can be from any group type, so you could
have a group 6, then a group 9, then another group 9, then a group 1
I am open to suggestions on how to approach this numbering scenario