我有 3 个表:DimAccounts、DimTime 和 FactBudget。
DimAccounts 示例:
AccountKey Accouncode AccountType AccountFrom AccountTo
1.10001 10001 S 11401 27601
1.10002 10002 S 11401 16501
1.11000 11000 S 11401 11508
1.110001 110001 B NULL NULL
1.110002 110002 B NULL NULL
1.11400 11400 S 11401 11408
昏暗时间示例:
TimeKey FullDate
20020102 2002-01-02
20020103 2002-01-03
20020104 2002-01-04
事实预算示例:
TimeKey AccountKey Debit Credit
20080523 1.110002 0.00 884.00
20080523 1.110001 0.00 4251.96
20100523 1.100002 229.40 0.00
20080523 1.100002 711.79 0.00
20090523 1.110002 0.00 711.79
20080523 1.110001 0.00 229.40
20040523 1.100002 0.00 15619.05
在 FactBudget 中有许多只有 B 类型的账户。我需要计算账户类型为 S(总和)的借方和贷方总和。AccountFrom 和 AccountTo 列显示 B 类帐户从哪里开始求和 (AccountFrom ) 和从哪里结束 (AccountTo)。
我已经使用光标做出了解决方案....但是你知道这很糟糕:) 我认为在 FactBudget 中以某种方式对数据进行分组(因为 factbudget 中还有很多列和 600k 行)以及在搜索解决方案时(当我分组离开时)只有 60k 行):
SELECT [TimeKey],
[AccountKey],
SUM([Debit]),
SUM([Credit])
FROM [dbo].[FactBudget]
GROUP BY [TimeKey],
[AccountKey]
那么,如何通过 TimeKey 和 AccountKey 获取 S Accounts Debit 和 Cred Sum?(AccountKey 数据类型为 nvarchar)
解决方案示例:
TimeKey AccountKey Debit Credit
20080523 1.10002 0.00 2500
20080523 1.11000 0.00 8000
20080524 1.10002 900 0.00
实际上预算中没有 S 类型的帐户!!!!我们需要得到它(例如 1.11000 仅适用于日期 20080523):
select
SUM(Debit), SUM(Credit)
from FactBudget
LEFT JOIN [DimAccounts]
ON [DimAccounts].[AccountKey] = FactBudget.[AccountKey]
where CAST([DimAccounts].AccountCode AS INT) >=11401
and CAST([DimAccounts].AccountCode AS INT) <= 11508
and FactBudget.Timekey = 20080523
但我需要每个 S 帐户借记和贷记总和按日期。