gpt4 book ai didi

sql - 使用 newID() 创建函数

转载 作者:行者123 更新时间:2023-12-02 09:57:47 28 4
gpt4 key购买 nike

我不断收到此错误:有什么想法吗?

Invalid use of side-effecting or time-dependent operator in 'newid' within a function.

我正在使用MS-SQL Server 2005。这是 T-SQL 语句:

Create Function [dbo].[GetNewNumber](  )
RETURNS int
AS
BEGIN

Declare @code int

set @code = (SELECT CAST(CAST(newid() AS binary(3)) AS int) )

RETURN (@code)
END

最佳答案

您不能在函数中使用 NEWID()。

通常的解决方法(根据我的经验,更需要 GETDATE())是必须将其传入:

Create Function [dbo].[GetNewNumber](@newid UNIQUEIDENTIFIER  )
RETURNS int
AS
BEGIN

Declare @code int

set @code = (SELECT CAST(CAST(@newid AS binary(3)) AS int) )

RETURN (@code)
END

并称其为:

SELECT dbo.GetNewNumber(NEWID())

关于sql - 使用 newID() 创建函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2186692/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com