摘要:
mysql列存储引擎-POC-问题定位-索引相关
问题上下文参考 2022-09-15 mysql列存储引擎-POC-Q2-语句范围缩小后问题定位_帝尊悟世的博客-优快云博客
没有任何索引:
DDL:
CREATE TABLE `employees_noindex` (
`employee_id` int(11) NOT NULL DEFAULT '1',
`employee_name` varchar(50) NOT NULL,
`employee_sex` varchar(10) DEFAULT '男',
`hire_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`employee_mgr` int(11) DEFAULT NULL,
`employee_salary` float DEFAULT '3000',
`department_id` int(11) DEFAULT NU