I created a #temp table with id columns as int identity(1,1) and name as varchar .
Suppose I write the following two different statements to insert rows:
insert into
I want to ask, what is the difference between these two types of insert statements? Is there any difference between these inserts?
source share