通过索引名force index使用索引查询
在数据库表中有索引INDEX `time` (`timestamp`)而使用sql查询索引却不起作用select * from students where time>="2019-01-28 12:12:12"则使用select * from students force index(time) where time>="2019-01-28 12:12:12"...