如何给 MySQL 表格值追加 000?


若要追加 000,请使用 ZEROFILL 的概念。我们先创建一个表 -

mysql> create table DemoTable1913
   (
   Code int(4) ZEROFILL AUTO_INCREMENT NOT NULL,
   PRIMARY KEY(Code)
   );
Query OK, 0 rows affected (0.00 sec)

使用 insert 命令在表中插入一些记录 -

mysql> insert into DemoTable1913 values(1);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1913 values(2);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1913 values(3);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1913 values(4);
Query OK, 1 row affected (0.00 sec)

使用 select 语句显示表中的所有记录 -

mysql> select * from DemoTable1913;

这将生成以下输出 -

+------+
| Code |
+------+
| 0001 |
| 0002 |
| 0003 |
| 0004 |
+------+
4 rows in set (0.00 sec)

更新于:30-12-2019

159 查看次数

开启你的 职业 生涯

通过完成课程获得认证

开始
广告