본문 바로가기
Database/MySQL

MySQL Auto_increase 값 초기화

by wansdream 2009. 1. 22.
■ auto_increment 초기화방법
auto_increment 필드는 delete 로 필드 값을 모두 삭제해도 초기화되지 않는다.
auto_increment 필드를 초기화 하기 위해서는 테이블을 삭제하고 다시 생성하는 방법과
auto_increment 값을 바꿔주는 방법이 있다.
truncate를 이용하면 테이블을 삭제하고 다시 생성해 준다.

alter table table명 auto_increment= 초기화값;
truncate table table명;

댓글