1\. 一些要知道的概念

1.1 小表驱动大表

1.2 两张表连接的情况

1.3 join buffer的作用

2. mysql中表关联的算法

2.0 前提

2.1 嵌套循环连接 Nested-Loop Join(NLJ)

select * from t1 left join t2 on t1.name=t2.name;

2.2 块嵌套循环连接 Block Nested-Loop Join(BNLJ)