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
答案 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