避免重複紀錄

  1. 資料表出現重複的紀錄是被允許的,但有時必須避免或移除。如果要避免寫入重複紀錄,可於產生資料表時,定義主鍵列或不重複列。
  2. 登入 mariadb。
    [root@kvm3 ~]# mycli -uroot -p123qwe
    Connecting to socket /var/lib/mysql/mysql.sock, owned by user mysql
    MariaDB 10.5.16
    mycli 1.26.1
    Home: http://mycli.net
    Bug tracker: https://github.com/dbcli/mycli/issues
    Thanks to the contributor - John Sterling
    
  3. 使用資料庫 dyw。
    MariaDB root@(none):(none)> use dyw;
    You are now connected to database "dyw" as user "root"
    Time: 0.002s
    
  4. 以下例子建立資料表 person,共有三個欄位,其中 lname,fname 組合成主鍵。
    MariaDB root@(none):dyw> create table person(fname char(20) not null,lname char(2
                          -> 0) not null, gender char(10), primary key(lname,fname));
                          ->
    Query OK, 0 rows affected
    Time: 0.093s
    
  5. 使用 INSERT IGNORE 語法於資料表 person 新增一筆紀錄並查詢。
    MariaDB root@(none):dyw> insert ignore into person(lname,fname) values('Wang','De
                          -> -Yu');
    Query OK, 1 row affected
    Time: 0.020s
    MariaDB root@(none):dyw> select * from person;
    +-------+-------+--------+
    | fname | lname | gender |
    +-------+-------+--------+
    | De-Yu | Wang  | <null> |
    +-------+-------+--------+
    
    1 row in set
    Time: 0.041s
    
  6. 直接使用 INSERT 語法新增紀錄時,若此紀錄已存在,因為有設定主鍵,其具不重複性,所以出現紀錄重複的錯誤訊息。
    MariaDB root@(none):dyw> insert into person(lname,fname) values('Wang','De-Yu');
    (1062, "Duplicate entry 'Wang-De-Yu' for key 'PRIMARY'")
    
  7. INSERT IGNORE 語法新增紀錄時,若此紀錄已存在,則忽略不動作。因此,再執行一次沒有出現錯誤訊息,但查詢結果還是只有一筆。
    MariaDB root@(none):dyw> insert ignore into person(lname,fname) values('Wang','De
                          -> -Yu');
    Query OK, 0 rows affected
    Time: 0.005s
    MariaDB root@(none):dyw> select * from person;
    +-------+-------+--------+
    | fname | lname | gender |
    +-------+-------+--------+
    | De-Yu | Wang  | <null> |
    +-------+-------+--------+
    
    1 row in set
    Time: 0.023s
    
  8. REPLACE 語法新增紀錄時,若此紀錄已存在,則取代原紀錄。
    MariaDB root@(none):dyw> replace into person(lname,fname) values('Lin','Linda');
    Query OK, 1 row affected
    Time: 0.007s
    MariaDB root@(none):dyw> select * from person;
    +-------+-------+--------+
    | fname | lname | gender |
    +-------+-------+--------+
    | Linda | Lin   | <null> |
    | De-Yu | Wang  | <null> |
    +-------+-------+--------+
    
    2 rows in set
    Time: 0.022s
    
  9. 使用 INSERT IGNORE 語法新增紀錄,此紀錄已存在,雖然要新增的非主鍵 gender 資料不同,還是忽略不新增。
    MariaDB root@(none):dyw> insert ignore into person(lname,fname,gender) values('Li
                          -> n','Linda','F');
    Query OK, 0 rows affected
    Time: 0.004s
    MariaDB root@(none):dyw> select * from person;
    +-------+-------+--------+
    | fname | lname | gender |
    +-------+-------+--------+
    | Linda | Lin   | <null> |
    | De-Yu | Wang  | <null> |
    +-------+-------+--------+
    
    2 rows in set
    Time: 0.023s
    
  10. 使用 REPLACE 語法新增紀錄,此紀錄已存在,但要新增的非主鍵 gender 紀錄資料不同,會以新的資料取代舊紀錄。
    MariaDB root@(none):dyw> replace into person(lname,fname,gender) values('Lin','Li
                          -> nda','F');
    Query OK, 2 rows affected
    Time: 0.015s
    MariaDB root@(none):dyw> select * from person;
    +-------+-------+--------+
    | fname | lname | gender |
    +-------+-------+--------+
    | Linda | Lin   | F      |
    | De-Yu | Wang  | <null> |
    +-------+-------+--------+
    
    2 rows in set
    Time: 0.018s