MySQL——内外连接
内外连接
一、表的内连接
内连接实际上就是利用where子句对两种表形成的笛卡尔积进行筛选,将不合理的数据过滤掉;
#语法格式
select 字段 from 表1 inner join 表2 on 连接条件 and 其他条件;
例1:显示SMITH的名字和部门名;
select ename , dname from emp inner join dept on emp.deptno=dept.deptno and ename='SMITH';
建议使用内连接的方式,再使用where子句进行筛选;
二、外连接
外连接分为了左外连接和内外连接;
2.1左外连接
如果左侧的表完全显示,就是左外连接,不存在的属性使用null占位;
#语法格式
select 字段 from 表1 left join 表2 on 连接条件 and 其他条件;
2.2右外连接
如果右侧的表完全显示,就是右外连接,不存在的属性使用null占位;
#语法格式
select 字段 from 表1 right join 表2 on 连接条件 and 其他条件;
原文地址:https://blog.csdn.net/qq_33093885/article/details/139357542
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!