提问人:Naidu 提问时间:7/7/2023 最后编辑:marc_sNaidu 更新时间:7/7/2023 访问量:32
我们可以合并为一列吗
Can we merge as a single column
问:
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
答: 暂无答案
评论