join on 连接查询
join where 等值查询
7种 join 查询
思路分析:
1.分析需求,分析查询查询的字段来自哪些表
2.确定使用那种连接查询
3.确定交叉点,on 的连接点,表中哪些数据id,No是相同的
sql执行顺序
from
join
on
where
group by(开始使用select中的别名,后面的语句中都可以使用)
avg,sum…
having
select
distinct
order by
limit
acid原则,原子性,持久性,隔离性,一致性
索引中的 explain 分析sql执行
新建索引
alter table ** add index indexname(字段)
create index id_表名_字段名 on 表名(字段名)