Oracle中sql语句(+)符号代表连接的使用讲解
oracle中sql语句(+)符号代表连接
(+)在=前边为右连接
(+)在=后边为左连接
SELECT a.*, b.* from a(+) = b就是一个右连接,等同于select a.*, b.* from a right join b
SELECT a.*, b.* from a = b(+)就是一个左连接,等同于select a.*, b.* from a left join b
内连接
- 常用的连接运算符=、<、>
- 使用比较运算符根据每个表共有的列的值匹配两个表中的行
外连接
左连接
LEFT JOIN 或LEFT OUTER JOIN
列出左表中的所有行,若左表中某行在右表中没有匹配的行,则左表该行输出,右表该行为空
右连接
RIGHT JOIN 或RIGHT OUTER JOIN
列出右表中的所有行,如右表中某行在左表中没有匹配的行,则右表该行输出,左表该行为空
全连接
FULL JOIN 或FULL OUTER JOIN
对两表中的所有数据
当左表中的某行在右中没有匹配的行,左表该行输出,右表该行为空
当右表中的某行在左表中没有匹配的行,右表该行输出,左表该行为空
例子:
------------------------------------------------- a表 id name b表 id job parent_id 1 张3 1 23 1 2 李四 2 34 2 3 王武 3 34 4 a.id同parent_id 存在关系 --------------------------------------------------
内连接
select a.*,b.* from a inner join b on a.id=b.parent_id 1 张3 1 23 1 2 李四 2 34 2
左连接
select a.*,b.* from a left join b on a.id=b.parent_id 1 张3 1 23 1 2 李四 2 34 2 3 王武 null
右连接
select a.*,b.* from a right join b on a.id=b.parent_id 1 张3 1 23 1 2 李四 2 34 2 null 3 34 4
全连接
select a.*,b.* from a full join b on a.id=b.parent_id 1 张3 1 23 1 2 李四 2 34 2 null 3 34 4 3 王武 null
相关推荐
oraclemch 2020-11-06
Seandba 2020-08-16
dbasunny 2020-08-16
娜娜 2020-06-22
专注前端开发 2020-10-21
苏康申 2020-11-13
vitasfly 2020-11-12
liuyang000 2020-09-25
FellowYourHeart 2020-10-05
赵继业 2020-08-17
whyname 2020-08-16
拼命工作好好玩 2020-08-15
langyue 2020-08-15
写程序的赵童鞋 2020-08-03
Accpcjg 2020-08-02
tydldd 2020-07-30
好记忆也需烂 2020-07-28