I got a problem I could not solve.. We got a messages table in our my SQL database with some fields like text, senderid, recipientid, date, ...
A new feature is to group these messages like Facebook in one. Let's say:
- user A is sending user B a message
- user B is replying to A
- User A is sending user C a Message
- user D is sending user A a message
So user A must have three messages in his box: B, C, D. B includes (1,2), C includes (3) and D includes (4), even if C is not replying to A (3) and A not to D (4).
A simple group by (senderid) or group by (recipientid) is not enough..
How's that possible?