MySQL中,查询created_time在2022年之前的记录,以下查询效率最低的是()?
CREATE TABLE `student_table` ( `id` bigint NOT NULL AUTO_INCREMENT, `name` char(10) DEFAULT NULL, `created_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `index_created_time` (`created_time`) ) ENGINE=InnoDB
