Sejauh yang saya lihat, Anda harus bergabung dengan DimAccounts
ke dirinya sendiri untuk mengaitkan akun tipe-B dengan akun tipe-S yang sesuai, lalu bergabung dengan baris yang disetel ke FactBudget
untuk akhirnya mendapatkan angka. Sesuatu seperti ini:
SELECT
f.TimeKey,
s.AccountKey,
SUM(f.Debit) AS Debit,
SUM(f.Credit) AS Credit
FROM DimAccounts s
INNER JOIN DimAccounts b ON b.AccountCode BETWEEN s.AccountFrom AND s.AccountTo
INNER JOIN FactBudget f ON f.AccountKey = b.AccountKey
WHERE s.AccountType = 'S'
AND b.AccountType = 'B'
GROUP BY
f.TimeKey,
s.AccountKey