What result is returned after executing the following commands?
DECLARE @MyVariable int;
SET @MyVariable = 1;
GO
SELECT @MyVariable;
What result is returned after executing the following commands?
DECLARE @MyVariable int;
SET @MyVariable = 1;
GO
SELECT @MyVariable;