简介
实战索引设计
数据映射原理
索引
唯一索引
二级索引
索引实例
索引设计
索引创建(建表的时候创建)
建表完以后添加
联合索引(最左原则,索引覆盖)
使用例子
索引覆盖
表达式索引
表达式索引的使用
不可见索引
兼容性
操作
#查看索引的分布
create index index_name on noncluster_order(code);
#查看索引的region分布
show table noncluster_order index index_name regions;
#创建唯一索引
create unique index index_name on noncluster_order(code);
#将索引打散
split table noncluster_order index index_name between ('code1002') and ('code9990') regions 4;
#查看索引的region分布
show table noncluster_order index index_name regions;