I have a primary key composed by 2 fields:
IDFirst
IDSecond
I would like to create a sequence of IDSecond for each VALUE of IDFirst.
i.e.
IDFirst IDSecond
------- --------
12 1
12 2
12 3
13 1
13 2
SQL Server 7.0 Is able to automatically manage this kind of sequence?
Sorry for the bad english!
IDFirst
IDSecond
I would like to create a sequence of IDSecond for each VALUE of IDFirst.
i.e.
IDFirst IDSecond
------- --------
12 1
12 2
12 3
13 1
13 2
SQL Server 7.0 Is able to automatically manage this kind of sequence?
Sorry for the bad english!