mysql查询索引加不加引号性能

CREATE TABLE `new_table` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(45) DEFAULT NULL,
  `sex` enum('man','woman') DEFAULT NULL,
  `mobile` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mobile` (`mobile`)

) ENGINE=InnoDB AUTO_INCREMENT=2039394 DEFAULT CHARSET=latin1;

ALTER TABLE `test`.`new_table` ADD INDEX `mobile_index` (`mobile` ASC)

使用php脚本插入200万条数据,设置mobile为索引,执行下面两条语句;

  • 加引号:

SELECT * FROM test.new_table where mobile='15910548144'

  • 不加引号:

SELECT * FROM test.new_table where mobile=15910548144

执行结果:

  • 加引号:
12:40:57 SELECT * FROM test.new_table where mobile='15910548144' LIMIT 0, 10001 row(s) returned0.00042 sec / 0.000015 sec
  • 不加引号
12:40:47 SELECT * FROM test.new_table where mobile=15910548144 LIMIT 0, 10001 row(s) returned0.717 sec / 0.000021 sec

查看执行计划:

不加引号是全表扫描,加引号是扫描索引。
不加引号:
mysql查询索引加不加引号性能_第1张图片

加引号:mysql查询索引加不加引号性能_第2张图片

你可能感兴趣的:(mysql查询索引加不加引号性能)