varchar 到数字的转换

发布于 2024-12-16 20:18:42 字数 500 浏览 2 评论 0原文

我有一个问题困扰着我。当 varchar 值由字母组成时,如何将 varchar 转换为数字。

对于我的 varchar 价格列值:

14dollars10cents
15dollars20cents

通过将其转换为 varchar 到数字价格列,值应该是:

1410
1520

我知道如果 varchar 不包含任何字母,它可以通过“自动转换”

SELECT CONVERT(INT, PRICE) FROM Table

有没有办法摆脱字母在中间,因为我想对其进行数学函数

的更新尝试:

SELECT CAST (Replace(REPLACE(PRICE, 'dollars', '.'),'cents','') AS Number(4,2))) 
FROM TEST;

谢谢。

I have a question that bothers me. How can i convert a varchar to number when inside the varchar value consists of alphabets.

For my varchar price column values:

14dollars10cents
15dollars20cents

By converting it to varchar to number price column, the values should be:

1410
1520

I know that if the varchar does not consists any alphabets, it can auto convert by"

SELECT CONVERT(INT, PRICE) FROM Table

Is there any way to get rid of the alphabets in the middle as I would like to do mathematical function on it.

Updated attempt of putting fixed point number in:

SELECT CAST (Replace(REPLACE(PRICE, 'dollars', '.'),'cents','') AS Number(4,2))) 
FROM TEST;

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

明明#如月 2024-12-23 20:18:42

您可以使用 REGEXP_REPLACE 删除所有非数字字符:

SELECT REGEXP_REPLACE(price, '[^[:digit:]]')
  FROM table;

然后将其转换为数字:

SELECT TO_NUMBER(REGEXP_REPLACE(price, '[^[:digit:]]'))
  FROM table;

如果您想添加点,那么您也可以使用 REGEXP_REPLACE 来做到这一点:

SELECT TO_NUMBER(REGEXP_REPLACE(val, '^([0-9]*)([^[:digit:]]*)([0-9]*)(.*)

瞧...

, '\1.\3')) FROM table;

瞧...

You could just use REGEXP_REPLACE to remove all non digit characters:

SELECT REGEXP_REPLACE(price, '[^[:digit:]]')
  FROM table;

To then convert this to a number:

SELECT TO_NUMBER(REGEXP_REPLACE(price, '[^[:digit:]]'))
  FROM table;

If you want to add the point in then you can do that with REGEXP_REPLACE too:

SELECT TO_NUMBER(REGEXP_REPLACE(val, '^([0-9]*)([^[:digit:]]*)([0-9]*)(.*)

Voila...

, '\1.\3')) FROM table;

Voila...

┼── 2024-12-23 20:18:42
SELECT CAST(REPLACE(YourVarcharCol, 'dollars', '') AS INT) FROM Table

问题是如果 varchar 仍然包含字母数字字符,它就会中断。

SELECT CAST(REPLACE(YourVarcharCol, 'dollars', '') AS INT) FROM Table

The issue with this is it will break if the varchar still contains alpha-numeric characters.

网名女生简单气质 2024-12-23 20:18:42

如何使用 translate 去除不需要的字符。

SELECT TO_NUMBER(TRANSLATE('14dollars10cents','1234567890dolarscents','1234567890')) FROM DUAL

How about using translate to strip out the unwanted characters.

SELECT TO_NUMBER(TRANSLATE('14dollars10cents','1234567890dolarscents','1234567890')) FROM DUAL
愁杀 2024-12-23 20:18:42

不,我不认为有直接的方法。
您可以进行字符串解析来获取整数值。

No I don't think there is direct way.
you can do string parsing to get your integer value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文