Teradata 字符串操作

发布于 2024-11-19 19:16:03 字数 228 浏览 3 评论 0原文

我仔细查看了 Teradata 语法参考,但无济于事

我有一些带有数字的行:

ID
Mickey
Laura9
Larry59N

如何从行中取出整数?

我明白 SUBSTR(id, 0, index( id, '%FORMAT%')) 可以,但我不知道我可以在 %FORMAT% 区域中输入什么来查找整数。

I have taken a good look at the Teradata Syntax reference to no avail

I have some rows with numbers:

ID
Mickey
Laura9
Larry59N

How do I take away the integers from my rows?

I understand that SUBSTR(id, 0, index(id, '%FORMAT%')) would work, but I don't know what could I enter in the %FORMAT% area to just find integers.

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

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

发布评论

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

评论(2

妞丶爷亲个 2024-11-26 19:16:03

您可以使用 oTranslate 删除数字:

 BTEQ -- Enter your SQL request or BTEQ command:

Select the_name, oTranslate( the_name, 'a0123456789','a')
from
( SELECT 'Larry59N' the_name FROM ( SELECT 'X' DUMMY ) a
         UNION ALL
         SELECT 'Laura9' FROM ( SELECT 'X' DUMMY ) b
         UNION ALL
         SELECT 'Mickey' the_name FROM ( SELECT 'X' DUMMY ) c
       ) d
;


 *** Query completed. 3 rows found. 2 columns returned.
 *** Total elapsed time was 1 second.

the_name oTranslate(the_name,'a0123456789','a')
-------- -----------------------------------------------------
Larry59N LarryN
Laura9   Laura
Mickey   Mickey

HTH。

干杯。

You can use oTranslate to remove numbers:

 BTEQ -- Enter your SQL request or BTEQ command:

Select the_name, oTranslate( the_name, 'a0123456789','a')
from
( SELECT 'Larry59N' the_name FROM ( SELECT 'X' DUMMY ) a
         UNION ALL
         SELECT 'Laura9' FROM ( SELECT 'X' DUMMY ) b
         UNION ALL
         SELECT 'Mickey' the_name FROM ( SELECT 'X' DUMMY ) c
       ) d
;


 *** Query completed. 3 rows found. 2 columns returned.
 *** Total elapsed time was 1 second.

the_name oTranslate(the_name,'a0123456789','a')
-------- -----------------------------------------------------
Larry59N LarryN
Laura9   Laura
Mickey   Mickey

HTH.

Cheers.

伤痕我心 2024-11-26 19:16:03

不幸的是,我不相信 Teradata 本身有一个函数可以完成此任务。我建议查看 Teradata Developer Exchange 上发布的 UDF (链接)。函数eReplaceChar 特别看起来可以帮助您完成您想要使用此数据执行的操作。在上面的链接中找到的 UDF 是在 Apache 2.0 许可证下发布的,因此您在使用它们时应该不会遇到任何问题。

Unfortunately, I don't believe there is a function native to Teradata that will accomplish this. I would suggest looking at the UDF's posted on the Teradata Developer Exchange (link). The function eReplaceChar in particular looks like it may help you accomplish what you are looking to do with this data. The UDF's found at the link above were published under the Apache 2.0 license so you should not have any problems using them.

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