我有表格消息
| id | user_id | recepient_id | message
| 1 | 1 | 2 | test1
| 2 | 1 | 2 | test2
| 3 | 2 | 1 | test3
| 4 | 3 | 1 | test4
| 5 | 3 | 2 | test5
我是 id 为 1 的用户,想选择我所在的行是 user_id 或 recepient_id(但每个 user_id/recepient_id 对只有 1 行)。在这个例子中,我想选择带有 ids 的消息 - 2、4(或 1、4 或 2、3 或 2、4。没关系。只需获取 user_id/recepient_id 的 uniq 对)
我该怎么做?