I have used identity key in a column of a table like
create table test(testid int identity(1,1),testname varchar(10))
and then I have inserted 2 rows like
Insert into test(testname) values('c')
Insert into test(testname) values('c#')
Now,My table contains like below:
1 c
2 c#
But,I want insert another row into this table test like 5 c++
So,My table will contain like
1 c
2 c#
5 c++
So,please send me the output as soon as possible.Help me please.
testidcolumn to beidentityif you have the need to insert arbitrary values into it?