본문 바로가기

Database/MySQL&Mariadb

AUTO_INCREMENT

AUTO_INCREMENT

레코드를 삽입할 때마다 컬럼의 값을 자동으로 하나씩 증가시켜 줌

 

예제

CREATE TABLE noticeBoard(

IdNumber  int not null primary key AUTO_INCREMENT,

ID varchar(20) not null,

title varchar(50),

substance text )

 

값 입력할 때는

INSERT INTO noticeBoard(ID, title, substance) values ("ID", "title", "substance");

 

 

'Database > MySQL&Mariadb' 카테고리의 다른 글

[ERROR-1418] 함수 생성 오류  (0) 2021.03.05
Mysql Workbench fetch rows 설정  (0) 2021.01.06
com.mysql.jdbc.Driver 에러  (0) 2012.06.11