时间:2021-07-01 10:21:17 帮助过:799人阅读
如果表中的数据是百万级的,这样查询是比较慢的;虽然你有可能在字段create_time上面加了索引,但是在where条件中又破坏了索引;导致索引失效;
这是我们优化为:
select * from ws_shop a force index(create_time) where date(create_time-interval 6 hour) > ‘2016-10-01 06:00:00‘
mysql force index() 强制索引的使用
标签:字段 int 查询 strong log 筛选 style 索引 条件