oracle exists 条件查询

前端之家收集整理的这篇文章主要介绍了oracle exists 条件查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
select /*+index(table_a columna)*/ distinct tx_oper_id
from table_a
where not exists(
select *
from
table_b
where b.id=a.id
)

参考Oracle官方说明

https://docs.oracle.com/cd/B19306_01/server.102/b14200/conditions012.htm

EXISTS Condition

An EXISTS condition tests for existence of rows in a subquery.


Table 7-11 shows the EXISTS condition.

Table 7-11 EXISTS Condition

Type of Condition Operation Example
EXISTS

TRUE if a subquery returns at least one row.

SELECT department_id
  FROM departments d
  WHERE EXISTS
  (SELECT * FROM employees e
    WHERE d.department_id 
    = e.department_id);
原文链接:https://www.f2er.com/oracle/212010.html

猜你在找的Oracle相关文章