專案中需要用到聯合唯一索引:
例如:有以下需求:每個人每一天只有可能產生一條記錄:處了程式約定之外,資料庫本身也可以設定:
例如:t_aa 表中有aa,bb兩個欄位, 如果不希望有2筆一模一樣的記錄(即:aa欄位的值可以重複;bb 欄位的值也可以重複,但是一條記錄(aa,bb)組合值不允許重複),需要給t_aa 表添加多個字段的聯合唯一索引:
alter table t_aa add unique index(aa,bb);
例如:
alter table use_info add unique index agd(user_account_id,game_id,daily_date); alter table user_info add unique key agdkey(user_account_id,game_id,daily_date);
這樣如果向表中新增相同記錄的時候,會回傳錯誤訊息。
但是配合Insert into…ON DUPLICATE KEY UPDATE…來使用就不會報錯,存在相同的記錄,直接忽略。
例:
INSERT INTO unit ( id, unitsubclass, name, state ) VALUES('1111','CPU','CPU','0' ) ON DUPLICATE KEY UPDATE unitsubclass=VALUES(unitsubclass),name =VALUES(name),state =VALUES(state)
還有一種情況就是,我們需要為以前的表創建這個索引,有可能以前的資料中存在重複的記錄那怎麼辦呢?
alter ignore table t_aa add unique index(aa,bb);
它會刪除重複的記錄(會保留一筆),然後建立唯一索引,高效且人性化。
檢視索引:
show index from 資料庫表名
alter table 資料庫add index 索引名稱(資料庫欄位名稱)PRIMARY KEY(主鍵索引):
ALTER TABLE `table_name` ADD PRIMARY KEY ( `column` ) UNIQUE(唯一索引);
ALTER TABLE table_name ADD UNIQUE (column) INDEX(普通索引):
ALTER TABLE `table_name` ADD INDEX index_name ( `column` )
FULLTEXT(全文索引):
ALTER TABLE `table_name` ADD FULLTEXT ( `column` )
多列索引:
ALTER TABLE `table_name` ADD INDEX index_name ( `column1`, `column2`, `column3` )
#普通聯合索引
##語法:create index 索引名稱on 表名(欄位名稱)範例:
create index firstIndex on student(id, name, address);注意:
唯一聯合索引
#語法:create unique index 索引名稱on 表名(欄位名稱)範例:
create unique index secondIndex on student(id, name, address);注意:
以上是怎麼利用MySQL新增聯合唯一索引的詳細內容。更多資訊請關注PHP中文網其他相關文章!