我有一个带有数字字段的文档,该字段填充在新插入的文档上。 需要检索该值以获取日期和字段最大值。
由于
答案 0 :(得分:0)
这是SQL代码:
ALTER FUNCTION [dbo].[fnProgressivoCliente]
(
-- Add the parameters for the function here
--<@Param1, sysname, @p1> <Data_Type_For_Param1, , int>
)
RETURNS int
AS
BEGIN
-- Declare the return variable here
DECLARE @progressivo int
-- Add the T-SQL statements to compute the return value here
set @progressivo=(select ISNULL(max(c.progressivo),0)+1
from tbClienti c
where CONVERT(date,c.Data)=CONVERT(date,getdate())
)
-- Return the result of the function
RETURN @progressivo
END
此致