본문 바로가기

프로그래밍/mysql

mysql - 자동증가(auto_increment)

반응형

auto_increment를 사용하기 위해서는 type가 int여야 한다.

  `id` int(11) NOT NULL auto_increment,

 

반응형