What is the difference between ; and GO in stored procedure in SQL Server ?
;
GO
Actually, if I have a stored procedure in SQL server and wanna to p
It marks the end of a batch in Query Analyzer and therefore signals the end of a stored procedure definition in that batch. As much as i know its not a part of sp. GO isn't a TSQL command.
And ; just ends the statement.