索引相關操作

2022-07-21 07:15:11 字數 531 閱讀 6859

新增聯合唯一索引: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)

MySQL 索引相關操作

在資料庫操作中,經常需要查詢特定的資料,以一條 select from zyftest where id 10000 為例,資料庫必須從第一條記錄來時遍歷,直到找到id為10000的資料,這樣的效率顯然非常低。所以,mysql允許建立索引來加快資料表的查詢和排序。一 索引的概念分析 索引的目的在於提...

Oracle索引相關

建立索引 create index kg yonghuxxkz1 cidxiazai on kg yonghuxxkz1 s cid,d xiacihbrq 找出某張表的所有索引 select from user indexes where table name upper kg yonghuxxk...

mongodb索引相關

索引是提高查詢查詢效率最有效的手段。索引是一種特殊的資料結構,索引以易於遍歷的形式儲存了資料的部分內容 如 乙個特定的字段或一組字段值 索引會按一定規則對儲存值進行排序,而且索引的儲存位置在記憶體中,所在從索引中檢索資料會非常快。如果沒有索引,mongodb必須掃瞄集合中的每乙個文件,這種掃瞄的效率...