我在这个Fiddle of Oracle 11g table中有一个多行字段。使用SQL,我如何提取匹配' Export'的最后一行。 This question帮助最后一次出现regex
,但我仍然没有得到我想要的结果。
期望的结果
1,[27-SEP-12] NOT for export
2,[27-SEP-12] OK for export
答案 0 :(得分:2)
select
customer_id,
regexp_substr(exp_comment,'.*'||chr(10)||'(.*Export)', 1, 1, 'n', 1) as export
from export_comments