我有这张桌子
table a
+-------+---------+
|userid |Pid |
+-------+---------+
| 1 |P1 |
| 1 |p2 |
| 2 |p3 |
| 2 |P4 |
+-------+---------|
table b
+-------+---------+
|userid |Pid |
+-------+---------+
| 1 |P3 |
| 1 |p4 |
| 2 |p1 |
| 2 |P2 |
+-------+---------|
知道如何获取表 A 中的其他用户,其中表 B 中的用户在表 B 中的 pid 等于表 A 中的其他用户 pid 和表 B 中的其他用户 pid 等于表 A 中的用户 pid
select other user where
user table B.pid = other user table A.pid
and
other user B.pid= user table A.pid