mysql数据库sql优化子查询优化_MySQL

WBOY
Release: 2016-06-01 12:58:50
Original
1131 people have browsed it

1、什么是子查询、表关联查询:
子查询:是指在主sql语句中的select或where子句中使用select查询语句;select a.name,(select b.name from b where b.id=a.id) from a where a.name lik 'a%'
表关联查询:指多个表联合查询;select a.name,b.name from a,b where a.id=b.id and a.name like 'a%';
虽然联合查询性能并不佳,但是和 MySQL 的子查询比起来还是有非常大的性能优势。MySQL 的子查询执行计划一直存在较大的问题,虽然这个问题已经存在多年,但是到目前已经发布的所有稳定版本中都普遍存在,一直没有太大改善。虽然官方也在很早就承认这一问题,并且承诺尽快解决,但是至少到目前为止我们还没有看到哪一个版本较好的解决了这一问题。
默认情况,子查询中使用全表扫描,所以总的I/O次数=主表数*子表数。当主表、子表中数据均查过1w时,使用子查询的整体性能就会立即下降,而且下降的会很厉害(测试发现大概需要10s多)


针对上面问题,解决方案:
1)对子表中的关联列建立索引、或建立外键关系:
如下有两张表a、b,使用子查询其执行计划如下

a表结构:

\

\

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!