Select ID, Name, Status, Notification
FROM TableA A
LEFT JOIN TableB B on B.receive-id = a.ID
and b.notification <> 2
INNER JOIN tableC C on A.ID = C.Registered-id
WHERE a.status=1
and c.status-reg=7
Ik denk dat je alle gebruikers wilt, zelfs als ze geen record in tabel B hebben, zolang de status 1 en 7 is. om nulls in de waar-clausule te verwerken)