아니요, 새 레코드를 추가하지 않고도 다음 기본 키를 얻을 수 있습니다. 먼저 −
를 생성해 보겠습니다.mysql> create table DemoTable1399 -> ( -> StudentId int NOT NULL AUTO_INCREMENT, -> PRIMARY KEY(StudentId) -> ); Query OK, 0 rows affected (0.53 sec)
insert −
를 사용하여 테이블에 일부 레코드 삽입mysql> insert into DemoTable1399 values(); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable1399 values(); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable1399 values(); Query OK, 1 row affected (0.07 sec)
select −
를 사용하여 테이블의 모든 레코드 표시mysql> select * from DemoTable1399;
이것은 다음과 같은 출력을 생성합니다 -
+-----------+ | StudentId | +-----------+ | 1 | | 2 | | 3 | +-----------+ 3 rows in set (0.00 sec)
다음은 새 레코드를 추가하지 않고 다음 기본 키를 가져오는 쿼리입니다. -
mysql> select auto_increment as NextPrimaryKey -> from information_schema.tables -> where table_schema=database() -> and table_name = 'DemoTable1399';
이것은 다음과 같은 출력을 생성합니다 -
+----------------+ | NextPrimaryKey | +----------------+ | 4 | +----------------+ 1 row in set (0.00 sec)