此文章主要向大家講述的是在MySQL數據庫下正確創建自動遞增字段的實際操作方案與其實際應用代碼的描述,以下就是對MySQL數據庫下創建自動遞增字段具體方案的描述,希望會給你帶來一些幫助在此方面。
- create table article
先創建一個表。
- (
id int Prima(最完善的虛擬主機管理系統)ry key auto_increment, //設置該字段為自動遞增字段。
- title varchar(255)
- );
- insert into article values (null,'a');
向MySQL數據庫中插入數據。
- select * from article;
結果如下:
- Id
- Title
- 1
- a
- insert into article values (null,’b’);
- insert into article values (null,'c');
- insert into article (title) values ('d');
select * from article; 結果如下:
- Id
- Title
- 1
- a
- 2
- b
- 3
- c
- 4
- d
以上的相關內容就是對在MySQL數據庫下創建自動遞增字段的介紹,望你能有所收獲。