mysql强制索引和禁止某个索引

mysql强制使用索引:force index(索引名或者主键PRI)

select * from table force index(PRI,idx1) limit 2;

mysql禁止某个索引:ignore index(索引名或者主键PRI)

select * from table  ignore index(PRI,idx1) limit 2;

posted @ 2023-03-18 13:58  刚好遇见Mysql  阅读(88)  评论(0编辑  收藏  举报