当前位置: 代码迷 >> MySQL >> The SELECT would examine more than MAX_JOIN_SIZE rows 出错分析 MYSQL
  详细解决方案

The SELECT would examine more than MAX_JOIN_SIZE rows 出错分析 MYSQL

热度:269   发布时间:2016-05-05 17:13:09.0
The SELECT would examine more than MAX_JOIN_SIZE rows 报错分析 MYSQL
用了一个联表查询一个大表,21 个字段,近四千万条记录吧。另一个表就几万的记录量。
报错误信息为:


#1104 The SELECT would examine more than MAX_JOIN_SIZE rows;
check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=#
if the SELECT is okay.


分析的原因是:
1,临时表太小了。不能装下查询的中间集。
2,或者没有索引或设置的不好。
3,这种大表最好不要联表查询。4千万*6万,就是2.4亿了。
  相关解决方案