2
所需的輸出
Buy flood insurance. Act now.
Buy flood insurance. Call now.
Buy flood insurance. No change.
這裏是我的嘗試:
with data_row as (
select 'or buy flood insurance. Act now.' as disclaimer from dual union all
select 'or Buy flood insurance. Call now.' as disclaimer from dual union all
select 'Buy flood insurance. No change.' as disclaimer from dual)
select case
when regexp_like(disclaimer,'^or (B|b)uy flood insurance.*') then
regexp_replace(disclaimer,'^or (B|b)uy flood insurance.*','Buy flood insurance.')
else disclaimer
end as revised
from data_row
請在此處顯示您的代碼。 – Cfreak
很高興。我無法發佈任何長度的內容。我會零零碎碎,耐心等待。 – zundarz
我再次收到此消息:http://meta.stackexchange.com/questions/197468/where-can-i-get-more-information-about-my-submission-error – zundarz