通过从 MySQL 字符串中移除首字母,然后是数字,来寻找和?


字符串(列值)以一个字符开头,其余字符串为数字。我们需要这些数字的和 -

J230
A130s
C13

为此,请使用 SUBSTRING() 函数和 SUM() 函数。

我们首先创建一个表 -

mysql> create table DemoTable761 (Price varchar(100));
Query OK, 0 rows affected (0.62 sec)

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

mysql> insert into DemoTable761 values('J230');
Query OK, 1 row affected (0.11 sec)
mysql> insert into DemoTable761 values('A130');
Query OK, 1 row affected (0.70 sec)
mysql> insert into DemoTable761 values('C13');
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable761 values('D456');
Query OK, 1 row affected (0.21 sec)
mysql> insert into DemoTable761 values('B6');
Query OK, 1 row affected (0.13 sec)

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

mysql> select *from DemoTable761;

这将产生以下输出 -

+-------+
| Price |
+-------+
| J230  |
| A130  |
| C13   |
| D456  |
| B6    |
+-------+
5 rows in set (0.00 sec)

以下是通过从 MySQL 字符串中移除首字母然后是数字来求和的查询 -

mysql> select sum(substring(Price,2)) from DemoTable761;

这将产生以下输出 -

+-------------------------+
| sum(substring(Price,2)) |
+-------------------------+
|                     835 |
+-------------------------+
1 row in set (0.00 sec)

更新于:03-Sep-2019

383 人查看过

开始您的 职业生涯

通过完成课程获得认证

开始
广告