索引相关操作
添加联合唯一索引:alter table t_sys_tranapiprepeat add unique index test(biz_code,biz_sn);
添加唯一索引:CREATE UNIQUE INDEX bank_acct_no ON t_reg_company_account(bank_acct_no);
删除索引:drop index test on t_sys_tranapiprepeat
查看索引:show index from t_sys_tranapiprepeat
建立主索引:
alter table 表名 add constraint 主键名 primary key (字段名);
普通索引:
create index 索引名 on 表名(字段名);
唯一索引:create unique index 索引名 on 表名(字段名);
创建联合索引的语法:create index 索引名 on 表名(字段名1,字段名2)