SQL Server函数始终返回NULL

时间:2011-12-12 23:59:13

标签: sql sql-server function

我正把头发拉出来。下面的函数总是返回null,即使它将代码拉出到查询窗口并手动设置输入参数也能正常工作。这个想法是我根据月份有不同的查询,因为每个月的平均值存储在不同的列中。我知道,桌子没有很好地规范化,但这是我必须要做的事情。我错过了什么?

ALTER FUNCTION [dbo].[fn_currentShareBal]
(
@currentDate    datetime,
@account        integer,
@acctType       varchar
)  
RETURNS money AS  
BEGIN

DECLARE @dte char(10)
DECLARE @returnVal money
DECLARE @month int

SET @dte = CONVERT(char(10), @currentDate, 101)
SET @month = MONTH(@currentDate)

-- because of the table strucure the actual query depends on the month
IF @month = 1 SET @returnVal = (SELECT SUM(avg1)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 2 SET @returnVal = (SELECT SUM(avg2)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 3 SET @returnVal = (SELECT SUM(avg3)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 4 SET @returnVal = (SELECT SUM(avg4)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 5 SET @returnVal = (SELECT SUM(avg5)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 6 SET @returnVal = (SELECT SUM(avg6)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 7 SET @returnVal = (SELECT SUM(avg7)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 8 SET @returnVal = (SELECT SUM(avg8)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 9 SET @returnVal = (SELECT SUM(avg9)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 10 SET @returnVal = (SELECT SUM(avg10)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 11 SET @returnVal = (SELECT SUM(avg11)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

IF @month = 12 SET @returnVal = (SELECT SUM(avg12)
                        FROM COSHAVG
                        WHERE cuID = @account
                        AND avgBalanceMonth =  @dte
                        AND acctType = @acctType)

RETURN @returnVal

END
GO

2 个答案:

答案 0 :(得分:1)

我认为问题在于您的功能定义。很难说你还没有公布你的表格定义。

这有用吗?如果没有,您可以在COSHAVG表上发布脚本化的创建吗?

ALTER FUNCTION [dbo].[fn_currentShareBal]
(
    @currentDate    datetime,
    @account        integer,
    @acctType       varchar(50)
)  
RETURNS money
AS  
BEGIN
    DECLARE @dte varchar(20)
    DECLARE @returnVal money
    DECLARE @month int

    SET @dte = CONVERT(varchar, @currentDate, 101)
    SET @month = MONTH(@currentDate)

    SELECT
        @returnVal=SUM(CASE
            WHEN @month = 1 THEN avg1
            WHEN @month = 2 THEN avg2
            WHEN @month = 3 THEN avg3
            WHEN @month = 4 THEN avg4
            WHEN @month = 5 THEN avg5
            WHEN @month = 6 THEN avg6
            WHEN @month = 7 THEN avg7
            WHEN @month = 8 THEN avg8
            WHEN @month = 9 THEN avg9
            WHEN @month = 10 THEN avg10
            WHEN @month = 11 THEN avg11
            WHEN @month = 12 THEN avg12
        END)
    FROM COSHAVG
    WHERE cuID = @account
    AND avgBalanceMonth =  @dte
    AND acctType = @acctType

    RETURN @returnVal
END
GO

答案 1 :(得分:1)

其他人已经在评论中指出要查找的内容,但是这里有一种更简洁的方式来重写函数(没有真正的行为改变,只是更容易维护):

ALTER FUNCTION [dbo].[fn_currentShareBal]
    (
      @currentDate DATETIME
    , @account INTEGER
    , @acctType VARCHAR (100) 
    )
RETURNS MONEY
AS 
    BEGIN
        DECLARE @dte CHAR(10)
        DECLARE @returnVal MONEY
        DECLARE @month INT
        SET @dte = CONVERT(CHAR(10), @currentDate, 101)
        SET @month = MONTH(@currentDate) 
         -- because of the table strucure the actual query depends on the month 

        SELECT  @returnVal = SUM(CASE WHEN @month = 1 THEN avg1
                                      WHEN @month = 2 THEN avg2
                                    /*...*/
                                      WHEN @month = 12 THEN avg12
                                 END)
        FROM    COSHAVG
        WHERE   cuID = @account
                AND avgBalanceMonth = @dte
                AND acctType = @acctType


        RETURN @returnVal
    END