|
|
Browse by Tags
All Tags » GO (RSS)
-
In this blog post, I explained different uses of GO command
Here is a Fun when you use GO as object name
CREATE PROCEDURE GO( @I INT)AS SELECT @I AS number
Well. The procedure is created and let us try to execute
GO 2What we see is Command(s) completed successfullyBecuase it becomes a syntax to execute a ...
-
As you all know, GO command signals the end of the batch of T-SQL statements
However in SQL Server 2005, it is also used to execute set of commands for a specified number of times
Consider that you want to create a table that should have hundred random integer values. You can the methods like the ones specified in ...
|
|
|