Bootstrap

oracle中where和on的区别

1.区别

在内连接(inner join)中使用没有区别。
但是在外连接(left join和right join)中使用的话,on条件使用后,还是会返回主表的记录。
where条件是对生成的结果集进行过滤。

2.测试

1)课程表course

2)老师表teacher

3)内连接

4)内连接on

5)内连接where

6)外连接

7)外连接on

8)外连接where

转载于:https://my.oschina.net/u/4038621/blog/3045135

;