开发者

Isnt this how to declare a local variable in Stored procedure?

开发者 https://www.devze.com 2023-01-29 07:35 出处:网络
ALTER PROC [Admin].开发者_开发知识库[sp_Ques] ( @QuesID bigint ) DECLARE @Lang int AS BEGIN . . . Yes, but you must declare it after the BEGIN.
ALTER PROC [Admin].开发者_开发知识库[sp_Ques]    
(
    @QuesID bigint
 )
DECLARE @Lang int
AS
BEGIN
.
.
.


Yes, but you must declare it after the BEGIN.

0

精彩评论

暂无评论...
验证码 换一张
取 消