让我们首先创建一个表格。在这里。我们已经设置了一个带有ZEROFILL和AUTO_INCREMENT的UserId列Mysql> create table DemoTable1831 ( UserId int(7)
让我们首先创建一个表格。在这里。我们已经设置了一个带有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)
--结束END--
本文标题: 在 MySQL 中使用 ZEROFILL 设置自定义自动增量
本文链接: https://lsjlt.com/news/436617.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0