mysql自增变量的常用操作


1、查询数据表的自增变量当前的值

SELECT t.`AUTO_INCREMENT` FROM information_schema.`TABLES` t WHERE   t.`TABLE_NAME`='table_name'

2、在mysql中,有时候需要把递增的主键ID初始化为1。 只要执行如下sql即可。

alter table table_name auto_increment=1;

【注意】
最好把初始值设为1,我也不清楚原因。如果设置为0的话,有时候会导致修改失败。

Have any Question or Comment?

发表回复

Archives