with 语句在oracle中 理解为: 临时创建的查询期间存在的VIEW ,这个VIEW仅在查询期间存在 with a as(select * from emp),b as (select * from empt) select * from a,b where a.id=b.id(+) and b.id is null