讓我們先建立一個表格。在這裡。我們已經設定了一個帶有ZEROFILL和AUTO_INCREMENT的UserId列
mysql> create table DemoTable1831 ( UserId int(7) zerofill auto_increment, PRIMARY KEY(UserId) ); Query OK, 0 rows affected (0.00 sec)
使用插入命令在表中插入一些記錄-
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進行了零填充
+---------+ | UserId | +---------+ | 0000101 | | 0000102 | | 0000103 | | 0000104 | +---------+ 4 rows in set (0.00 sec)#
以上是在 MySQL 中使用 ZEROFILL 設定自訂自動增量的詳細內容。更多資訊請關注PHP中文網其他相關文章!