MYSQL強制使用索引和禁止使用索引

2021-09-02 05:39:50 字數 581 閱讀 1040

1、mysql強制使用索引:force index(索引名或者主鍵pri)

例如:select * from table force index(pri) limit 2;(強制使用主鍵)

select * from table force index(ziduan1_index) limit 2;(強制使用索引"ziduan1_index")

select * from table force index(pri,ziduan1_index) limit 2;(強制使用索引"pri和ziduan1_index")

2、mysql禁止某個索引:ignore index(索引名或者主鍵pri)

例如:select * from table ignore index(pri) limit 2;(禁止使用主鍵)

select * from table ignore index(ziduan1_index) limit 2;(禁止使用索引"ziduan1_index")

select * from table ignore index(pri,ziduan1_index) limit 2;(禁止使用索引"pri,ziduan1_index")

MYSQL強制使用索引和禁止使用索引

mysql強制索引和禁止某個索引 1 mysql強制使用索引 force index 索引名或者主鍵pri 例如 select from table force index pri limit 2 強制使用主鍵 select from table force index ziduan1 index ...

mysql強制索引和禁止某個索引

1 mysql強制使用索引 force index 索引名或者主鍵pri 例如 select from table force index pri limit 2 強制使用主鍵 select from table force index ziduan1 index limit 2 強制使用索引 zi...

mysql語句強制使用索引

mysql強制使用索引 force index 索引名稱 對table one表中的id新增普通索引,索引名稱為id index。新增語句為 alter table 表名 add index 縮影名稱 列名 查詢語句 select from table one order by id desc li...