Hi! How I can use multiple SQL Scripts queris using GO in sql server like bellow link:
Execute multiple SQL Scripts (Queries) using GO statement in C# and VB.Net. lt's using in C#. I want it's using in sql server.
Refer the below query.
SQL
SELECT TOP 10 ContactName, City, Country FROM Customers GO SELECT TOP 10 (FirstName + ' ' + LastName) EmployeeName, City, Country FROM Employees GO
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.