프로그래밍/SQL
mysql - AI(auto_increment) 속성 초기화하기
beautifulhill
2019. 12. 14. 14:06
mysql에서 auto increment 속성을 초기화할 때
Alter table test.member auto_increment=1
이 때 auto_increment의 숫자는 현재 테이블에서 가장 높은 수 보다 커야한다.
-Before
-After