I have a tablecreate table Users ( idUser int indentity(1,1) primary key, usename varchar(20) not null unique, .....)
I execute three insert statement+ First insert with username as 'test' was successful --> idUser = 1+ Second insert with username as 'test' was error+ Third insert with username as 'test1' was successful --> idUser = 3I wanna third insert successful with idUser = 2, why is idUser = 3 ??? How to 'idUser = 2' because table have 2 record !!Please help me !! Thank