版权声明:这可是本菇凉辛辛苦苦原创的,转载请一定带上我家地址,不要忘记了哈 . https://cloud.tencent.com/developer/article/1433156
- 创建联合索引:
CREATE INDEX idx_status_stitution ON borrow_order (status,institution_code)
idx_status_stitution :索引名
borrow_order :表名
status,institution_code:要建索引的多个字段名
- 查看
show index from borrow_order
写查询条件时,索引中在前面的字段先查。
或者根据查询来建联合索引,就在建立索引时,把先查的字段写在前面,如本例中的 status 。
- 存在同名索引时会报错:Duplicate key name
- 删除:
ALTER TABLE borrow_order DROP INDEX idx_status_stitution