I am looking to find one way relationships in my table mysql table 'friends'
Name Friend
John Mary
Krish Paula
Debbie John
Paula Krish
Mary John
I want to list all pairs (A - B) for which no pair (B - A) can be found.
Example: The query should select row 4 (Debbie - John) since (John - Debbie) does not exist.