对 MySQL 4(不是 5)中的逗号分隔列求和
我正在编写一个查询,将数据从一个表选择到另一个表中,需要移动的列之一是 DECIMAL 列。由于我无法控制的原因,源列有时可能是逗号分隔的数字列表。有没有一种优雅的 sql 唯一方法来做到这一点?
例如:
源列
10.2
5,2.1
4
应该生成目标列
10.2
7.1
4
我正在使用 MySQL 4,顺便说一句。
I'm writing a query that selects data from one table into another, one of the columns that needs to be moved is a DECIMAL column. For reasons beyond my control, the source column can sometimes be a comma separated list of numbers. Is there an elegant sql only way to do this?
For example:
source column
10.2
5,2.1
4
Should produce a destination column
10.2
7.1
4
I'm using MySQL 4, btw.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要进行这种重要的字符串操作,您需要使用存储过程,对于 MySQL 来说,存储过程仅在 6 年前的 5.0 版本中出现。
MySQL 4 现在已经很老了,分支 4.1 的最新版本是 2008 年的 4.1.25。不再支持它。大多数 Linux 发行版不再提供它。确实到了该升级的时候了。
以下是适用于 MySQL 5.0+ 的解决方案:
示例:
To do this kind of non trivial string manipulations, you need to use stored procedures, which, for MySQL, only appeared 6 years ago, in version 5.0.
MySQL 4 is now very old, the latest version from branch 4.1 was 4.1.25, in 2008. It is not supported anymore. Most Linux distributions don't provide it anymore. It's really time to upgrade.
Here is a solution that works for MySQL 5.0+:
Example:
这是一个用于分割字符串的 mysql 函数:
你必须这样使用它:
Here is a mysql function to split a string:
And u have to use it this way:
不幸的是,mysql 不包含字符串分割函数或聚合,因此您需要在存储过程中或在客户端执行此操作。
Unfortunately mysql does not include string split functions or aggregates, so you will need to do this either in a stored procedure or on the client side.
基于数字表的解析方法可以在此 SQLFiddle 链接找到。本质上,一旦有了子字符串,sum 函数就会自动转换数字。为了方便起见:
A number table-based parse approach can be found at this SQLFiddle link. Esentially, once you have the substrings, the sum function will auto-cast the numbers. For convenience: