mysql嵌套子查询索引_SQL 子查询,索引优化

场景

索引优化

单列索引

多列索引

索引覆盖

排序

场景

我用的数据库是mysql5.6,下面简单的介绍下场景

课程表

48304ba5e6f9fe08f3fa1abda7d326ab.png

create table Course(

c_id int PRIMARY KEY,

name varchar(10)

)

48304ba5e6f9fe08f3fa1abda7d326ab.png

数据100条

学生表:

48304ba5e6f9fe08f3fa1abda7d326ab.png

create table Student(

id int PRIMARY KEY,

name varchar(10)

)

你可能感兴趣的:(mysql嵌套子查询索引)