Magic with GO Statement (Insert by Using Go statement)
Posted by
Saranpselvam under
Sql Server on 5/22/2014 7:49:20 AM |
Points: 75 | Views : 1919 | Status :
[Member]
HI
create table #test( id int not null identity (1, 1) primary key)
go
insert into #test default values;
go 100
Go
select * from #test
Execute the Above Query . We can Insert by Using Go statement...........