S
Song
I have student table:
studID LastName
1 Lin
2 Lee
payment table:
studID PaidDate PaidTo
1 4/1/2010 4/30/2010
1 5/1/2010 9/1/2010
2 4/1/2010 4/30/2010
2 5/1/2010 6/30/2010
And it's one to many relationship.
On July 1, I want to generate list of students with payments history
whose payment are due, in this case StudID2 but not StudID1
I do not have 'PaidTo' field in student table. If I add 'PaidTo' field
to student table, it'll be a burden for data entry people. Is there a
way to auto this?
studID LastName
1 Lin
2 Lee
payment table:
studID PaidDate PaidTo
1 4/1/2010 4/30/2010
1 5/1/2010 9/1/2010
2 4/1/2010 4/30/2010
2 5/1/2010 6/30/2010
And it's one to many relationship.
On July 1, I want to generate list of students with payments history
whose payment are due, in this case StudID2 but not StudID1
I do not have 'PaidTo' field in student table. If I add 'PaidTo' field
to student table, it'll be a burden for data entry people. Is there a
way to auto this?