SQL - Stored Procedures and Functions
What will be the result of this SQL code?
DECLARE @num INT;
SET @num = 7;
SET @num = @num * 2;
SELECT @num;
DECLARE @num INT;
SET @num = 7;
SET @num = @num * 2;
SELECT @num;
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions