我们可以合并为一列吗

Can we merge as a single column

提问人:Naidu 提问时间:7/7/2023 最后编辑:marc_sNaidu 更新时间:7/7/2023 访问量:32

问:

select
    case 
        when 'A-3258' like 'A-3258' 
            then '3258' 
            else 'Unwanted' 
    end as R1,
    trim(leading '-' from (trim(leading 'B' from ('B-3258')))) as R2 
from 
    dual;

我们可以在单列中做出结果吗?

R1    R2
==    ==
3258  3258

期待

R1
==
3258
3258
sql if-statement case 声明 nsregularexpression

评论

0赞 zedfoxus 7/7/2023
你可以做这样的事情:dbfiddle.uk/uRYH-YvO

答: 暂无答案