[MySQL] AUTO_INCREMENT 초기화
[ 현재 auto_increment 확인 ]
아래 예제는 list 테이블의 auto_increment 값을 확인하는 쿼리이며, Auto_increment 컬럼에서 다음 순번을 확인할 수 있습니다.
mysql> show table status like 'list';
+------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+--------------------+----------+----------------+---------+
| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment |
+------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+--------------------+----------+----------------+---------+
| list | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 32768 | 0 | 3855011 | 2023-01-17 08:29:02 | NULL | NULL | utf8mb3_general_ci | NULL | | |
+------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+--------------------+----------+----------------+---------+
[ auto_increment 초기화 ]
mysql> alter table [테이블명] auto_increment='1';
설정 후, 다음 insert 쿼리의 값은 1 번으로 입력됩니다.
'리눅스 > MySQL' 카테고리의 다른 글
MySQL 계정에 DB 엑세스 권한 부여 및 삭제하기 (쿼리 및 테스트 결과) (0) | 2023.11.08 |
---|---|
PostgreSQL 13.7 Replication 설정 (RockyLinux 9.0) (0) | 2023.03.10 |
MySQL (MariaDB) 로그들 logrotate 설정하기 (0) | 2022.10.07 |
mariabackup 을 이용한 MariaDB 10.6.9 Replication 구성하기 (0) | 2022.09.19 |
Rocky Linux 8.6 에서 MariaDB 10.9.2 소스 설치하기 (with InnoDB 이노디비 설정) (0) | 2022.09.13 |