我有一张这样的桌子:
+------+------+
| ID |ID_REF|
+------+------+
|1 |null |
+------+------+
|2 |3 |
+------+------+
|3 |null |
+------+------+
我如何select
的{{1}}行以及ID
列中引用的行?
例如:
修改
我正在使用 MySQL dbms。
答案 0 :(得分:1)
使用EXISTS
select *
from your_table t1
where id = 2 or exists (
select *
from your_table t2
where t1.id = t2.id_ref and t2.id = 2
)