2-11 自动编号

  • 自动编号,且必须与主键组合使用。
  • 默认情况下,起始值为1,每次的增量为1。

例如:

CREATE TABLE tb3(
id SMALLINT UNSIGNED AUTO_INCREMENT,
username VARCHAR(20) NOT NULL
);

如果一个字段设置成自动编号,则该字段必须设置成主键。如果不设置,将会提示错误:ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key


2-11 自动编号_第1张图片
自动编号.png

你可能感兴趣的:(2-11 自动编号)