MySQL에서 정수 시퀀스를 생성하려면 AUTO_INCREMENT를 사용하십시오. 정수 시퀀스를 생성하는 특별한 명령은 없음을 기억하십시오. AUTO_INCREMENT는 MySQL에서 정수 시퀀스를 생성하는 데 도움이 됩니다.
AUTO_INCREMENT는 기본적으로 1부터 시작합니다. alter 명령을 사용하여 다른 번호로 변경할 수 있습니다. 예를 들어 보겠습니다. 초기 값이 1000이라고 가정합니다. 그러면 다음 숫자는 1000 + 1 =1001이 됩니다.
다음은 AUTO_INCREMENT의 예입니다. 테이블 생성 쿼리 -
mysql> create table AutoIncrementDemo −> ( −> EmployeeId int AUTO_INCREMENT, −> primary key(EmployeeId) −> ); Query OK, 0 rows affected (0.54 sec)
정수 시퀀스를 생성하는 레코드를 삽입합니다. 쿼리는 다음과 같습니다 -
mysql> insert into AutoIncrementDemo values(); Query OK, 1 row affected (0.13 sec) mysql> insert into AutoIncrementDemo values(); Query OK, 1 row affected (0.27 sec) mysql> insert into AutoIncrementDemo values(); Query OK, 1 row affected (0.09 sec) mysql> insert into AutoIncrementDemo values(); Query OK, 1 row affected (0.09 sec) mysql> insert into AutoIncrementDemo values(); Query OK, 1 row affected (0.09 sec) mysql> insert into AutoIncrementDemo values(); Query OK, 1 row affected (0.07 sec)
select 문을 사용하여 정수 시퀀스를 확인할 수 있습니다. 쿼리는 다음과 같습니다 -
mysql> select *from AutoIncrementDemo;
다음은 출력입니다 -
+------------+ | EmployeeId | +------------+ | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | +------------+ 6 rows in set (0.00 sec)