有人可以帮我处理一个有表的sql查询吗
Col A | Col B
-------------
A B
C D
E F
B A
如何删除 {B, A} 或选择 {B, A}
问题是:
If two students A and B are friends, and A likes B but not vice-versa,
remove the Likes tuple.
我已经弄清楚了 A 和 B 是朋友并且 A 喜欢 B 的表,但我不知道如何删除 B 喜欢 A 元组
我有
select friend.id1, friend.id2
from friend, likes
where friend.id1 = likes.id1 and friend.id2 = likes.id2