0
what is to be done if I want to start the numbering from 100
primary key
4 Réponses
0
table
0
mayby "LIMIT 100, %"?
0
Ok
0
I think you define the column as identity (100,n) where n is increment value after every record you enter. For example if you did identity(100,1), the first record would be 100 and the second one 101.