Oracle exist子句

本文概述

  • 句法
  • 参数
  • 表格1
  • 表格1
  • 例子1
  • 例子2
  • 例子3
在Oracle中, exist子句与select, insert, update, delete语句一起使用。它用于组合查询和创建子查询。
句法
Where exists (subquery)

参数 子查询:这是一条选择语句, 它至少返回一个记录集。
表格1
Oracle exist子句

文章图片
表格1
Oracle exist子句

文章图片
例子1 查询:从存在的table1中选择名称(从位于table1.id = table2.id的table2中选择*)
Oracle exist子句

文章图片
例子2 查询:从存在的表2中选择id, 薪水(从表1中选择*, 其中table2.id = table1.id)
Oracle exist子句

文章图片
例子3 【Oracle exist子句】查询:从不存在的table1中选择*(从来自table2的table1.id = table2.id中选择*)
Oracle exist子句

文章图片

    推荐阅读