資料庫 ID 生成方案:資料庫自增
- 2019 年 11 月 26 日
- 筆記
創建一個資料庫實例,在這個實例中新建一個單獨的表:
表結構如下:
CREATE DATABASE `Test`; CREATE TABLE Test.test01 ( id bigint(20) unsigned NOT NULL auto_increment, phone char(11) NOT NULL default '', PRIMARY KEY (id), UNIQUE KEY uni_phone (phone) ) ENGINE=Innodb;
可以使用下面的語句生成並獲取到一個自增ID
begin; replace into test01(phone) VALUES ('12300008888'); select last_insert_id(); commit;
phone 的存在是為了方便插入數據,當插入數據成功時,就產生了自增 id,而對於插入,這裡使用的是 replace,replace 會先查找是否存在 phone 指定值一樣的數據;如果存在,則先 delete 再 insert,如果不存在,則直接 insert。