mysql强制使用指定索引查询

mysql强制指定索引查询

语法:
select * from table_name force index (index_name) where conditions;
使用 关键字 force

#########mysql强制使用指定索引查询
SELECT * FROM `yrd_pay_flow`  FORCE INDEX(`idx_trxn_date`) 
WHERE  trxn_date > '2017-08-12 59:59:59'  AND trxn_date < '2016-06-23 00:00:00'; 

posted on 2018-11-06 18:21  腾飞的鹰  阅读(11335)  评论(0)    收藏  举报

导航