mysql 테이블 초기화
그냥 delete구문으로 삭제를 하게 되면 auto_increment 값등은 초기화가 안 된다.
이런 부분까지 모두 초기화 시키고자 한다면 truncate 를 사용하면 된다.
truncate 테이블명
만약 그냥 auto_increment 값을 초기화 하고자 한다면 아래처럼 해도 된다.
alter table test_board auto_increment=1;
반응형
mysql 테이블 초기화
그냥 delete구문으로 삭제를 하게 되면 auto_increment 값등은 초기화가 안 된다.
이런 부분까지 모두 초기화 시키고자 한다면 truncate 를 사용하면 된다.
truncate 테이블명
만약 그냥 auto_increment 값을 초기화 하고자 한다면 아래처럼 해도 된다.
alter table test_board auto_increment=1;