gpt4 book ai didi

mysql - 如何在 Oracle 中检查字符串中的特定位置

转载 作者:行者123 更新时间:2023-11-28 23:29:12 25 4
gpt4 key购买 nike

如何检查字符串中的第 9 个字符是字母还是数字。

例如,在“25006070TR”中,我想返回 Yes 或类似于它是一封信的东西。另一方面,在“250060708R”中,我想要一个“否”或表示数字的东西。

最佳答案

您可以使用 case 语句以及 substr 和 regexp_like 的组合,例如:

with sample_data as (select '25006070TR' str from dual union all
select '250060708R' str from dual union all
select '25006070#R' str from dual union all
select '25006070 R' str from dual union all
select '12345' str from dual)
select str,
case when regexp_like(substr(str, 9, 1), '\d') then 'Digit'
when regexp_like(substr(str, 9, 1), '[[:alpha:]]') then 'Letter'
when substr(str, 9, 1) is null then 'Empty'
else 'Special character'
end ninth_char_type
from sample_data;


STR NINTH_CHAR_TYPE
---------- -----------------
25006070TR Letter
250060708R Digit
25006070#R Special character
25006070 R Special character
12345 Empty

显然,如果您直接在 PL/SQL 中执行此操作,则可以直接将 case 语句嵌入到 PL/SQL 中;您不需要切换到 SQL。

如果您要从表中获取字符串,那么您应该在 SQL 语句中保留 case 表达式。

关于mysql - 如何在 Oracle 中检查字符串中的特定位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37949080/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com