mysql:为什么左连接不使用索引?

标签 mysql join left-join inner-join

我在使用 mysql 查询时遇到了一个奇怪的性能问题。

SELECT
`pricemaster_products`.*,
`products`.*
FROM `pricemaster_products`
LEFT JOIN `products`
ON `pricemaster_products`.`ean` = `products`.`products_ean`

我明确地想使用左连接。但是查询比它应该花费的时间要多得多。

我试图将连接更改为 INNER JOIN。现在查询确实很快,但是结果不是我需要的。

我用explain得出了以下结论:

如果我使用“LEFT JOIN”,那么查询的 EXPLAIN 会导致...

type: "ALL"
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 90.000 / 50.000 (the full number of the corresponding table)

...对于两个表。

如果我使用“INNER JOIN”,那么 EXPLAIN 给出:

对于表“产品”:

Same result as above.

对于表“pricemaster_products”:

type: "ref"
possible_keys: "ean"
key: ean
key_len: 767
ref: func
rows: 1
extra: using where

两个表都在相关列上设置了索引。我能想到的 LEFT JOIN 这么慢的唯一可能原因是它根本不使用索引。但为什么不呢?

表结构如下:

CREATE TABLE IF NOT EXISTS `pricemaster_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `provider` varchar(255) CHARACTER SET utf8 NOT NULL,
  `ean` varchar(255) CHARACTER SET utf8 NOT NULL,
  `title` varchar(255) CHARACTER SET utf8 NOT NULL,
  `gnp` double DEFAULT NULL,
  `vat` int(11) DEFAULT NULL,
  `cheapest_price_with_shipping` double DEFAULT NULL,
  `last_cheapest_price_update` int(11) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `ean` (`ean`),
  KEY `title` (`title`),
  KEY `gnp` (`gnp`),
  KEY `vat` (`vat`),
  KEY `provider` (`provider`),
  KEY `cheapest_price_with_shipping` (`cheapest_price_with_shipping`),
  KEY `last_cheapest_price_update` (`last_cheapest_price_update`),
  KEY `active` (`active`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=58436 ;

CREATE TABLE IF NOT EXISTS `products` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_ean` varchar(128) DEFAULT NULL,
  `products_status` tinyint(1) NOT NULL DEFAULT '1',
  [a lot more of fields with no connection to the query in question]
  PRIMARY KEY (`products_id`),
  KEY `products_status` (`products_status`),
  KEY `products_ean` (`products_ean`),
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=105518 ;

最佳答案

连接的两个相关字段的类型不完全相同(varchar(255) 与 CHARACTER SET utf8 和 varchar(128) 与 latin1)。我确实将两者都设置为相同的长度和字符集,现在使用 LEFT JOIN 的查询按预期工作。

关于mysql:为什么左连接不使用索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18660252/

相关文章:

javascript - PHP 无法识别使用 JavaScript 动态添加的字段

sql - 使用子查询更新与使用连接更新 - 哪个性能更好

mysql - rails3 中的 activerecord 不返回连接表中的多列

MySQL - 列的 LEFT JOIN 值,其中 MAX(列)

mysql - INNER JOIN 组合 2 列

MySQL 左连接子选择

mysql - 如何根据 emp 表中的员工层次结构给出 RANK

mysql - LEFT JOIN 操作上的 NULL 值

MySQL - 每种类型值的总计

mysql - 将 MySQL 迁移到另一台新服务器时是否需要 ibdata1、ib_logfile0、ib_logfile1 文件?