oracle 子查询怎么和外查询关联

2025-04-13 12:00:20
推荐回答(1个)
回答1:

select * from table1 a where exists(select id from t2 b where b.id = a.id);
例子供参考