【发布时间】:2020-11-15 00:31:19
【问题描述】:
例如,如果 url 是“http://abcretreival.stacks.com/questi/component/getcontent?objectid=12345a2z786c1001&basecod=aiae_drp”,我需要提取对象 id 的值
【问题讨论】:
-
请添加更多您需要的描述
例如,如果 url 是“http://abcretreival.stacks.com/questi/component/getcontent?objectid=12345a2z786c1001&basecod=aiae_drp”,我需要提取对象 id 的值
【问题讨论】:
您可以为此使用正则表达式函数:
select regexp_substr(
myclob,
'object_id=([^&]*)',
1,
1,
null,
1
) object_id
from mytable
【讨论】: