前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。
1. 创建联合索引:
CREATE INDEX idx_xxx_stitution ON xxx_order (status,institution_code)
idx_xxx_stitution :索引名
xxx_order :表名
status,institution_code:要建索引的多个字段名
2. 查看
show index from xxx_order
写查询条件时,索引中在前面的字段先查。
或者根据查询来建联合索引,就在建立索引时,把先查的字段写在前面,如本例中的 status 。
3. 存在同名索引时会报错:Duplicate key name
4. 删除:
ALTER TABLE xxx_order DROP INDEX idx_xxx_stitution