表结构如下
CREATE TABLE `user_cp` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cp_id` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'cpId 下划线分割',
`intimacy` int(11) NOT NULL COMMENT '加了 add_exp 后的当前等级下的经验',
`attenuation_utime` int(11) NOT NULL DEFAULT '0' COMMENT '扣减时间',
`utime` int(11) NOT NULL COMMENT '更新时间',
`ctime` int(11) NOT NULL COMMENT '时间',
PRIMARY KEY (`id`),
UNIQUE KEY `cp_id_unique` (`cp_id`),
KEY `idx_attenuationutime_utime_intimacy_cpid` (`attenuation_utime`,`utime`,`intimacy`,`cp_id`)
) ENGINE=InnoDB AUTO_INCREMENT=31988443 DEFAULT CHARSET=utf8
sql 语句
explain SELECT cp_id
FROM user_cp
WHERE utime < 1707912100
AND attenuation_utime < 1708430500
AND intimacy > 0
extra: Using where; Using index
MySQL 版本:5.7.32
按照我的理解,这个 SQL 应该是符合索引下推的条件的,但是实际并没有使用,有大佬可以解答一下吗?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.