让我们首先创建一个表-
mysql> create table DemoTable -> ( -> StudentId int NOT NULL AUTO_INCREMENT, -> PRIMARY KEY(StudentId) -> );
使用insert命令在表中插入一些记录。在这里,我们插入了一个值,但是由于它是AUTO_INCREMENT,因此默认值将可见-
mysql> insert into DemoTable(StudentId) values(0);
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
这将产生以下输出。默认的AUTO_INCREMENT值1作为第一个值是可见的-
+-----------+ | StudentId | +-----------+ | 1 | +-----------+ 1 row in set (0.00 sec)