有没有办法使 TSQL 变量保持不变?

2021-09-10 00:00:00 tsql sql-server

有没有办法让 TSQL 变量保持不变?

Is there a way to make a TSQL variable constant?

推荐答案

不,但您可以创建一个函数并将其硬编码在其中并使用它.

No, but you can create a function and hardcode it in there and use that.

这是一个例子:

CREATE FUNCTION fnConstant()
RETURNS INT
AS
BEGIN
    RETURN 2
END
GO

SELECT dbo.fnConstant()

相关文章