我有两张这样的桌子
Users table
id | name
-------------
1 | s1
2 | s2
3 | s3
4 | s4
5 | s5
6 | s6
friends table
friendID | user_a | user_b
--------------------
1 | 1 | 2
2 | 3 | 1
3 | 4 | 2
4 | 1 | 3
我想运行这个查询:谁是 s1 的朋友?
这是我当前的查询,但它不起作用
select a.name
from users a, friends b
where a.id=b.user_b
and b.user_a = (select b.user_a
from friends
where a.name='s1');