A family of Microsoft relational database management systems designed for ease of use.
SELECT MembershipPersonIDPerson.Person, MembershipPersonIDPerson.PersonID, AAMasterfile.Visits, AAMasterfile.Facility
FROM AAMasterfile INNER JOIN MembershipPersonIDPerson ON AAMasterfile.PersonID = MembershipPersonIDPerson.PersonID;
So I have an inner join that gives me all the information for my smaller group, i.e. visits to facilities.
Now I want to total those visits per the person.
If This isn't enough information for you?
- I'm surprised and ready to learn why
If this is enough information for you, I hope to see the solution.
AB, John