Mysql基本查询语句和多表联合查询

mysql优化避免全表扫描策略总结

https://blog.csdn.net/sinat_41144773/article/details/96683270

 MySQL行级锁、表级锁和页级锁(和索引的关系)

https://blog.csdn.net/qq_35246620/article/details/69943011

Mysql多表查询语句

基本查询语句:    select  可选字段名  from  表名;

条件查询:   select  可选字段名  from  表名  where  id < 5;

多条件查询:   select  可选字段名  from  表名  where  id < 5 and sex_id = 0;

模糊查询: select  可选字段名  from  表名  where  real_name like '王%';


多表查询

1、两表查询问题——场景:人员表(部门id字段)+部门表

转载:https://www.cnblogs.com/qunxiadexiaoxiangjiao/p/8480754.html(必须要带条件查询,不然就会产生笛卡尔积)
select  可选显示的部分字段  from 人员表, 部门表 where 人员表.部门id字段 = 部门表.id;

第一种 多表联合查询
select real_name, department_name from employee,department where employee.department_id=department.id;

第二种 多表连接查询
内连接查询(和多表联合查询效果一样)
select *  from employee inner join department on employee.department_id=department.id;

左连接查询
select * from employee left join department on employee.department_id=department.id;

右连接查询
select * from employee right join department on employee.department_id=department.id;


2、多对多查询问题——场景:选课表(学生sid,课程cid)+课程表+学生表 

转载:https://blog.csdn.net/qq_35146878/article/details/78607618

查询学生学号为1学生的有 哪些课程 分别什么老师(只查询了课程信息,没有查询学生信息——还是两表问题

select cname,cteacher from Course inner join selectCourse on selectCourse.cid=Course.cid and sid=1;

查询这三个表的详细信息(必须连接 课程表+学生表

select * from (selectCourse left join course on selectcourse.cid=course.cid) left join student on selectcourse.sid=student.sid;


LEFT JOIN延伸:

LEFT JOIN关联表中ON,WHERE后面跟条件的区别

转载:https://blog.csdn.net/wqc19920906/article/details/79785424

多个left join 之间的执行顺序问题 (待验证....)

转载:https://blog.csdn.net/gxl_ct001/article/details/84608397

https://blog.csdn.net/helloMyWorlds/article/details/52472514


 

你可能感兴趣的:(mysql,Mysql多表查询,索引优化)