What is the use of GO in SQL Server Management Studio & Transact SQL?
Go means, whatever SQL statements are written before it and after any earlier GO, will go to SQL server for processing.
Select * from employees;
GO – GO 1
update employees set empID=21 where empCode=123;
GO – GO 2
In the above example, statements bef
转载
2021-03-27 09:18:03 ·
82 阅读 ·
0 评论