Oracle内连接

前端之家收集整理的这篇文章主要介绍了Oracle内连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

内连接(Inner join)是指表连接的连接结果只包含那些完全满足连接条件的记录。

select t1.col1,t1.col2,t2.col3
from t1,t2
where t1.col2=t2.col2

select t1.col1,t2.col3
from t1
join t2 on (t1.col2=t2.col2)

如果内连接中除了带连接条件外,还带了额外的限制条件,该限制条件在目标sql中出现的位置不会对最终执行的结果产生影响。若想添加一个t1.col1=1的现在条件,这个时候可以如下这么写:

select t1.col1,t2.col3
from t1
join t2 on (t1.col2=t2.col2 and t1.col1=1)

select t1.col1,t2.col3
from t1
join t2 on (t1.col2=t2.col2)
where t1.col1=1
【注意】:如果是外连接的话,就会影响了
原文链接:https://www.f2er.com/oracle/206041.html

猜你在找的Oracle相关文章