Home > Database > Mysql Tutorial > MySQL各种数据表类型重设自增起始值的方法_MySQL

MySQL各种数据表类型重设自增起始值的方法_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-01 13:37:25
Original
1087 people have browsed it

bitsCN.com

MySQL各种数据表类型重设自增起始值的方法

 

MyISAM数据表

删除最大编号的记录后,该编号不可重用。

可在建表时可用"AUTO_INCREMENT=n"选项来指定一个自增的初始值,

建表后可用alter table table_name AUTO_INCREMENT=n命令来重设自增的起始值。

HEAP数据表

HEAP数据表从MySQL4.1开始才允许使用自增列。

可在建表时可用"AUTO_INCREMENT=n"选项来指定一个自增的初始值,建表后可用alter table table_name AUTO_INCREMENT=n命令来重设自增的起始值。

BDB数据表

不可在 CREATE TABLE 时使用"AUTO_INCREMENT=n"选项来指定自增的初始值, 也不可通过alter table table_name AUTO_INCREMENT=n命令来改变自增初始值。

 

InnDB数据表

不可在 CREATE TABLE 时使用"AUTO_INCREMENT=n"选项来指定自增的初始值, 也不可通过alter table table_name AUTO_INCREMENT=n命令来改变自增初始值。

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template