I have a field with identity column as below
create table A (
Rowcount identity int (3,1)
)
How can I start the identity column with 001 instead of 1
and I want it to look like the right column instead of the left column
001 1
002 2
003 3
004 4
005 instead of 5
006 6
007 7
008 8
009 9
010 10
Can sombody help. Thanks.
create table A (
Rowcount identity int (3,1)
)
How can I start the identity column with 001 instead of 1
and I want it to look like the right column instead of the left column
001 1
002 2
003 3
004 4
005 instead of 5
006 6
007 7
008 8
009 9
010 10
Can sombody help. Thanks.