본문 바로가기
MySql

MySQL에서 AUTO_INCREMENT를 재설정하는 방법은 무엇입니까?

by 베이스 공부 2020. 9. 16.
반응형

필드의 AUTO_INCREMENT 재설정 하려면 어떻게해야합니까?
1 부터 다시 시작하고 싶습니다.

 

해결 방법

 

다음을 사용하여 카운터를 재설정 할 수 있습니다.

ALTER TABLE tablename AUTO_INCREMENT = 1


카운터를보다 작거나 같은 값으로 재설정 할 수 없습니다. to any that have already been used. For MyISAM, if the value is less than or equal to the maximum value currently in the AUTO_INCREMENT column, the value is reset to the current maximum plus one. For InnoDB, if the value is less than the current maximum value in the 열, 오류가 발생하지 않으며 현재 시퀀스 값이 변경되지 않습니다.


 

참조 페이지 https://stackoverflow.com/questions/8923114

 

 

반응형

댓글