程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> MySQL中unique列上插入重復值的解決方法

MySQL中unique列上插入重復值的解決方法

編輯:關於MYSQL數據庫

本文的unique列上插入重復值解決方案,主要基於MySQL平台。通過這些,可以做到一些新的功能和應用。希望本文能對大家有所幫助。

當unique列在一個UNIQUE鍵上插入包含重復值的記錄時,我們可以控制MySQL如何處理這種情況:使用IGNORE關鍵字或者ON DUPLICATE KEY UPDATE子句跳過INSERT、中斷操作或者更新舊記錄為新值。

  1. MySQL> create table menus(id tinyint(4) not null auto_increment,  
  2.    -> label varchar(10) null,url varchar(20) null,unique key(id));  
  3. Query OK, 0 rows affected (0.13 sec)  
  4. MySQL> insert into menus(label,url) values('Home','home.Html');  
  5. Query OK, 1 row affected (0.06 sec)  
  6. MySQL> insert into menus(label,url) values('About us','aboutus.Html');  
  7. Query OK, 1 row affected (0.05 sec)  
  8. MySQL> insert into menus(label,url) values('Services','services.Html');  
  9. Query OK, 1 row affected (0.05 sec)  
  10. MySQL> insert into menus(label,url) values('Feedback','feedback.Html');  
  11. Query OK, 1 row affected (0.05 sec) 
  1. MySQL> select * from menus;  
  2. +----+----------+---------------+  
  3. | id | label   | url          |  
  4. +----+----------+---------------+  
  5. | 1 | Home    | home.Html    |  
  6. | 2 | About us | aboutus.Html |  
  7. | 3 | Services | services.Html |  
  8. | 4 | Feedback | feedback.Html |  
  9. +----+----------+---------------+  
  10. rows in set (0.00 sec) 

如果現在在unique列插入一條違背唯一約束的記錄,MySQL會中斷操作,提示出錯:

  1. MySQL> insert into menus(id,label,url) values(4,'Contact us','contactus.Html');  
  2. ERROR 1062 (23000): Duplicate entry '4' for key 'id' 

在前面的INSERT語句添加IGNORE關鍵字時,如果認為語句違背了唯一約束,MySQL甚至不會嘗試去執行這條語句,因此,下面的語句不會返回錯誤:

  1. MySQL> insert ignore into menus(id,label,url) values(4,'Contact us','contactus.Html');  
  2. Query OK, 0 rows affected (0.00 sec)  
  3. MySQL> select * from menus;  
  4. +----+----------+---------------+  
  5. | id | label   | url          |  
  6. +----+----------+---------------+  
  7. | 1 | Home    | home.Html    |  
  8. | 2 | About us | aboutus.Html |  
  9. | 3 | Services | services.Html |  
  10. | 4 | Feedback | feedback.Html |  
  11. +----+----------+---------------+  
  12. rows in set (0.00 sec) 

當有很多的INSERT語句需要被順序地執行時,IGNORE關鍵字就使操作變得很方便。使用它可以保證不管哪一個INSERT包含了重復的鍵值,MySQL都回跳過它(而不是放棄全部操作)。

在這種情況下,我們還可以通過添加MySQL4.1新增加的ON DUPLICATE KEY UPDATE子句,使MySQL自動把INSERT操作轉換為UPDATE操作。這個子句必須具有需要更新的字段列表,這個列表和UPDATE語句使用的列表相同。

  1. MySQL> insert into menus(id,label,url) values(4,'Contact us','contactus.Html')  
  2.    -> on duplicate key update label='Contact us',url='contactus.Html';  
  3. Query OK, 2 rows affected (0.05 sec) 

在這種情況下,如果MySQL發現表已經包含具有相同唯一鍵的記錄,它會自動更新舊的記錄為ON DUPLICATE KEY UPDATE從句中指定的新值:

  1. MySQL> select * from menus;  
  2. +----+------------+----------------+  
  3. | id | label     | url           |  
  4. +----+------------+----------------+  
  5. | 1 | Home      | home.Html     |  
  6. | 2 | About us  | aboutus.Html  |  
  7. | 3 | Services  | services.Html |  
  8. | 4 | Contact us | contactus.Html |  
  9. +----+------------+----------------+  
  10. rows in set (0.01 sec) 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved