手记

左连接与右连接

左连接where只影向右表,右连接where只影响左表。
左连接:左边有的,右边没有的为null
select from table1 left join tbale2 on table1.id=table2.id
这条sql语句返回结果 table1表中的数据全部返回 table2表中的数据只返回满足where条件的
右连接:左边没有的,右边有的为null
select
from table1 right join table2 on table1.id=table2.id
这条sql语句返回结果 table2表中的数据全部返回 table1表中的数据只返回满足where条件的
内连接:显示左边右边共有的
select * from table1 inner join table2 on table1.id = table2.id
这条sql语句返回结果 显示满足条件的数据 并不以谁为主表

0人推荐
随时随地看视频
慕课网APP