转载

记MySQL一次关于In的优化

MySQL版本:5.6.14
详见MySQL技术内幕:SQL编程 102页

files表记录的是dfs系统中的文件信息.

有一批数据上传出现错误,需要重新上传.
错误文件的范围已经记录在了test.files_20170206表中。

运行如下查询,竟然很长时间没有结果.

  1. select * from files t1 where (oldpath,flen) in (
  2.     select oldpath,max(flen) from files f where oldpath in
  3.         (select oldpath from test.files_20170206 )
  4.     group by oldpath
  5. )

使用explain extended 查看执行计划

记MySQL一次关于In的优化

记MySQL一次关于In的优化

原来的SQL,使用了Exists方式.

改写SQL如下,实际上就是加了一层嵌套.

  1. select * from files t1 where (oldpath,flen) in (
  2.     select * from (
  3.         select oldpath,max(flen) from files f where oldpath in
  4.             (select oldpath from test.files_20170206 )
  5.         group by oldpath
  6.     ) a
  7. )

记MySQL一次关于In的优化

经过改写之后,就符合了原来的预期,先将结果保存为一个临时表.然后通过临时表再查数据.
正文到此结束
Loading...