Reputation: 5098
ALTER PROC [Admin].[sp_Ques] ( @QuesID bigint ) DECLARE @Lang int AS BEGIN . . .
Upvotes: 0
Views: 539
Reputation: 21531
Yes, but you must declare it after the BEGIN.
BEGIN
Upvotes: 2