I have a view in snowflake that gives me the following:
- loan date
- loan amount
- maturity date
- payment frequency (weekly, biweekly, semimonthly, monthly)
- payment amount
I want to generate a sort of amortization schedule off of this, if you will. So if i have a loan with a date of 1/1/2022, and a maturity date of 3/9/2022 and a payment frequency of biweekly @ $50 per payment, i would want to see an output like:
LoanID | Payment Date | Payment Amount | Payment Frequency |
---|---|---|---|
abc123 | 1/15/2022 | $50.00 | biweekly |
abc123 | 1/29/2022 | $50.00 | biweekly |
abc123 | 2/12/2022 | $50.00 | biweekly |
abc123 | 2/26/2022 | $50.00 | biweekly |
abc123 | 3/09/2022 | $50.00 | biweekly |
I'm assuming i need some sort of loop while payment date < maturity date and sum(payment amount) < loan amount, but i'm not sure how to set that up properly for a view with thousands of loans. ANY help you all can provide would be incredible and i'm very grateful!
You can get this by writing a Recursive CTE, just remember that the default is limited to 100 iterations, if you need more loops then check this MAX_RECURSIONS parameter.
This is just an example of code, you should extend it to include some extreme data protection;
Sample data:
Query: