用 ZEROFILL 在 MySQL 中设置自定义自动增量
让我们先创建一个表。此处,我们设置 UserId 列为 ZEROFILL 和 AUTO_INCREMENT
mysql> create table DemoTable1831 ( UserId int(7) zerofill auto_increment, PRIMARY KEY(UserId) ); Query OK, 0 rows affected (0.00 sec)
使用 insert 命令在表中插入一些记录:
mysql> insert into DemoTable1831 values(101); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1831 values(); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1831 values(); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1831 values(); Query OK, 1 row affected (0.00 sec)
使用 select 语句从表中显示所有记录:
mysql> select * from DemoTable1831;
这将生成以下输出。所有值对 UserId 字段宽度为 7 的 zerofill
+---------+ | UserId | +---------+ | 0000101 | | 0000102 | | 0000103 | | 0000104 | +---------+ 4 rows in set (0.00 sec)
广告