程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL數據庫下正確創建自動遞增字段很簡單

MySQL數據庫下正確創建自動遞增字段很簡單

編輯:MySQL綜合教程

此文章主要向大家講述的是在MySQL數據庫下正確創建自動遞增字段的實際操作方案與其實際應用代碼的描述,以下就是對MySQL數據庫下創建自動遞增字段具體方案的描述,希望會給你帶來一些幫助在此方面。

  1. create table article  

先創建一個表。

  1. (  

id int Prima(最完善的虛擬主機管理系統)ry key auto_increment, //設置該字段為自動遞增字段。

  1. title varchar(255)  
  2. );  
  3. insert into article values (null,'a');   

向MySQL數據庫中插入數據。

  1. select * from article;  

結果如下:

  1. Id  
  2. Title   
  3. 1  
  4. a  
  5. insert into article values (null,’b’);  
  6. insert into article values (null,'c');  
  7. insert into article (title) values ('d');  

select * from article; 結果如下:

  1. Id  
  2. Title   
  3. 1  
  4. a  
  5. 2  
  6. b  
  7. 3   
  8. c  
  9. 4  
  10. d  

以上的相關內容就是對在MySQL數據庫下創建自動遞增字段的介紹,望你能有所收獲。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved