I have what I'm sure is quite a remedial question here, but I can't for the life of me get this simple join to work.
Basically, I have 3 tables:
- MEMBERS (first_name,last_name),
- MEMBER_TO_GROUP(member_id,group_id)
- PAYMENTS (member_id, date, amount).
I'm looking to grab all payments from members in a specific group. By using only two of the tables, I can find all PAYMENTS of a specific group, without MEMBER information, or I can find all MEMBER information without PAYMENT information. However, when I attempt to add the third table, bad data is returned (e.g. I get members not in the group). This is the basic query i'm using:
SELECT
p.*,
m.first_name,
m.last_name
FROM
members m,
payments p,
member_to_group mg
WHERE
mg.group_id = 12
AND mg.member_id = p.member_id
AND m.member_id = p.member_id
I'm not sure where the disconnect is, but any assistance would be most appreciated.