5.X 버전
select Auto_increment from information_schema.tables where table_schema = '[db_name]' and table_name = '[table_name]'
4.X 버전 이상
show table status from [db_name] like '[table_name]';
초기화
데이터가 있을때
alter table [table_name] auto_increment = 1;
없을때.
truncate table [table_name];
'Database' 카테고리의 다른 글
mysql 모든 디비 복구 및 패키지버전 업그레이드시 시스템 테이블 업그레이드 방법 (0) | 2011.04.18 |
---|---|
MSSQL - mdf, ldf 파일 이전 (0) | 2010.11.04 |
SQL Server 2005 주의 대상 (Suspect) DB 복구 방법 (0) | 2010.07.19 |
mysql 주요 date 함수 (0) | 2009.04.21 |
MySQL MYI 로 DB복구법 (0) | 2009.04.16 |