当前位置:网站首页>What does (+) in Oracle mean
What does (+) in Oracle mean
2022-07-03 07:58:00 【Three year old funny】
oracle Medium (+) What does that mean?
Concept elaboration oracle Medium (+) It's a special usage ,(+) Indicates external connection , And always on the side of the non main table .
For example, left outer connection :
select A.a,B.a from A LEFT JOIN B ON A.b=B.b;
Equivalent to
select A.a,B.a from A,B where A.b = B.b(+);
Another example , This is the right outer connection :
select A.a,B.a from A RIGHT JOIN B ON A.b=B.b;
Equivalent to
select A.a,B.a from A,B where A.b (+) = B.b;
I see. Remember to give points ! ! !
边栏推荐
- PHP wechat red packet grabbing algorithm
- Technical dry goods | some thoughts on the future of AI architecture
- 【踩坑系列】mysql 修改root密码失败
- Precautions for opensips and TLS SIP trunk docking
- I want to do large screen data visualization application feature analysis
- 多旅行商问题——公式和求解过程概述
- Docker installs MySQL and successfully uses Navicat connection
- [MySQL 11] how to solve the case sensitive problem of MySQL 8.0.18
- 在浏览器输入url后执行什么
- go语言-循环语句
猜你喜欢

【LeetCode】2. Valid parentheses · valid parentheses

VMware virtual machine configuration static IP

创业团队如何落地敏捷测试,提升质量效能?丨声网开发者创业讲堂 Vol.03

JS common basic case sorting (continuous update)

Unity XR实现交互(抓取,移动旋转,传送,射击)-Pico
![[MySQL 11] how to solve the case sensitive problem of MySQL 8.0.18](/img/9b/db5fe1a37e0de5ba363f9e108310a5.png)
[MySQL 11] how to solve the case sensitive problem of MySQL 8.0.18

C language learning notes (mind map)

Unity XR realizes interaction (grasping, moving, rotating, transmitting, shooting) -pico

【踩坑系列】mysql 修改root密码失败

OSPF experiment
随机推荐
JSON与Object之间转换
LwIP learning socket (application)
An article for you to understand - Manchester code
jsutlis
Structure of golang
What is definition? What is a statement? What is the difference between them?
[end of 2021] National Meteorological Short Video (Kwai, Tiktok) influence list in December
Unity XR实现交互(抓取,移动旋转,传送,射击)-Pico
Quality blog——
2020-12-12
C language learning notes (mind map)
Open the influence list of "National Meteorological Short Videos (Kwai, Tiktok) in November" in an interactive way“
Clip Related Script
[step on the pit series] MySQL failed to modify the root password
Research shows that breast cancer cells are more likely to enter the blood when patients sleep
使用 FileChannel 进行文件的复制拷贝
Redis profile
I want to do large screen data visualization application feature analysis
register关键字
Technical dry goods | Bert model for the migration of mindspore NLP model - text matching task (2): training and evaluation