I would appreciate any help with code to carry out this task;
I have a table containing information about payments made by different customers thus
TransactionsTable
AccNo PmtDate Amt
101 10/03/2004 10
101 17/03/2004 10
101 24/03/2004 15
103 10/03/2004 10
103 12/03/2004 15
103 17/03/2004 10
104 20/03/2004 10
PayPatternTable
AccNo PmtPattern
101 Wkly
103 Wkly
104 Mthly
Each customer has a payment pattern.I am supposed to look at the TransactionsTable and check for customers who are paying by their pay pattern. e.g for March 2004 which customers on a weekly payment pattern have made the right number of purchases.
Thanks for any help given.
KISS - Keep It Simple Sugar!
I have a table containing information about payments made by different customers thus
TransactionsTable
AccNo PmtDate Amt
101 10/03/2004 10
101 17/03/2004 10
101 24/03/2004 15
103 10/03/2004 10
103 12/03/2004 15
103 17/03/2004 10
104 20/03/2004 10
PayPatternTable
AccNo PmtPattern
101 Wkly
103 Wkly
104 Mthly
Each customer has a payment pattern.I am supposed to look at the TransactionsTable and check for customers who are paying by their pay pattern. e.g for March 2004 which customers on a weekly payment pattern have made the right number of purchases.
Thanks for any help given.
KISS - Keep It Simple Sugar!