56 多表连接查询 索引
Posted gyh412724
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了56 多表连接查询 索引相关的知识,希望对你有一定的参考价值。
---恢复内容开始---
主要内容
1 多表连接查询
语法: select 字段列表
from 表一 inner/left/right join 表二
on 表一.字段 = 表二.字段
内连接: 直连接匹配的行:
select * from employee inner join department on employee.dep_id = department.id;
select * from employee , department where employee.dep_id = department.id;和上面的效果一样.
左连接 : 显示左表的全部记录:
select * from employee left join department on employee.dep_id = department.id;
右连接 : 显示右表的全部记录:
select * from employee rightr join department on employee.dep_id = department.id;
显示全部记录:
select * from employee left join department on employee.dep_id = department.id;
union
select * from employee rightr join department on employee.dep_id = department.id;
符合条件连接查询:
示例1: 以内连接的方式查询employee和department表,并且employee表中的age字段值必须大于25,即找出年龄大于25岁的员工以及员工所在的部门
---恢复内容结束---
以上是关于56 多表连接查询 索引的主要内容,如果未能解决你的问题,请参考以下文章
MySQL数据库学习笔记----MySQL多表查询之外键表连接子查询索引
数据库学习笔记6--MySQL多表查询之外键表连接子查询索引