誰かが次のようなテーブルがある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