删除最后一个值并在 MySQL 中将两个新值固定为 VARCHAR 数字(VARCHAR 数字)?
我们首先创建一张表。这里,我们有类型为 VARCHAR 的值 −
mysql> create table DemoTable ( Value varchar(100) ); Query OK, 0 rows affected (1.80 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values('100'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable values('1244'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('15789'); Query OK, 1 row affected (0.18 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
这将显示以下输出 −
+-------+ | Value | +-------+ | 100 | | 1244 | | 15789 | +-------+ 3 rows in set (0.07 sec)
以下是删除最后一个值并在 MySQL 中添加两个新的 VARCHAR 数字值所需的查询。我们已在删除最后一个值后设置值 55 −
mysql> update DemoTable set Value=concat(substring(Value,1,length(Value)-1), '55'); Query OK, 3 rows affected (0.23 sec) Rows matched: 3 Changed: 3 Warnings: 0
让我们再次检查表格记录 −
mysql> select *from DemoTable;
这将显示以下输出 −
+--------+ | Value | +--------+ | 1055 | | 12455 | | 157855 | +--------+ 3 rows in set (0.00 sec)
广告