1.undo log,redo log,bin log是什么?Checkpoint是什么?一条MySQL更新语句的执行过程是什么样的?
https://www.cnblogs.com/wq-blogs/p/11867199.html
https://blog.csdn.net/u010002184/article/details/88526708
checkpoint机制:https://www.cnblogs.com/cuisi/p/6590281.html
2.脏页是什么?
https://blog.csdn.net/weixin_34198881/article/details/93577479
5.MySQL中的事务是什么?
6.MySQL的隔离级别是怎么样的?
7.MVCC的实现原理是怎么样的?
8.MySQL是怎么解决幻读的问题的?
9.MySQL中有哪些锁?
10.B树是什么?
11.B树与B+树的区别是什么?
12.索引是什么?
13.字符串索引和数字类型索引的区别?
14.union和union all的区别是什么?
15.Join的工作流程是怎么样的,怎么进行优化?
https://blog.csdn.net/huxiaodong1994/article/details/91668304
17.联合索引是什么?
https://blog.csdn.net/Abysscarry/article/details/80792876
18.回表是什么?覆盖索引是什么?
https://www.jb51.net/article/180267.htm
19.哪些情况不要建索引?主键,唯一性索引,普通索引的区别是什么?
https://www.cnblogs.com/l199616j/p/11232392.html
21.InnoDB和MyISAM的区别是什么?
22.什么是分库分表?
23.怎么实现跨库分页查询?
https://www.cnblogs.com/zhumengke/articles/12173314.html
https://segmentfault.com/a/1190000013225860?utm_source=channel-hottest
24.MySQL主从复制的工作流程是什么样的?
25.char类型与varchar类型的区别?
26.查询数量SELECT Count(*)怎么优化?
https://blog.csdn.net/hit1110310422/article/details/97943091
27.如何优化MySQL慢查询?
https://www.cnblogs.com/xk920/p/11132038.html
29.MySQL语句执行顺序?
1 from
2 on
3 join
4 where
5 group by(开始使用select中的别名,后面的语句中都可以使用)
6 avg,sum....
7 having
8 select
9 distinct
10 order by
30.哪些时候索引无效?
https://www.jianshu.com/p/3f310ff60f11
https://juejin.im/post/5f0d4fadf265da22f3250eaa
原文:https://www.cnblogs.com/qmillet/p/13389170.html