데이터가 삽입 될 때마다 1씩 증가해주는 역할을 한다. mysql> create table animals ( -> id mediumint not null auto_increment, -> name char(30) not null, -> primary key (id)); Query OK, 0 rows affected (0.00 sec) mysql> insert into animals (name) values -> ('dog'),('cat'),('penguin'),('lax'),('whale'),('ostrich'); Query OK, 6 rows affected (0.00 sec) Records: 6 Duplicates: 0 Warnings: 0 테이블 구조 생성시 칼럼에 보면 A_I로 된 열이 있는데 이..