我感兴趣的文字。
我需要获得/bin
描述,例如:
Element
请告知查询结构。
Variable SIM_CARD is does not exist in BO
答案 0 :(得分:1)
需要正则表达式组:
SELECT REGEXP_SUBSTR('"Element: Variable SIM_CARD is does not exist in BO.>"',
'Element:([^\.]+)',
1,
1,
'i',
1)
FROM DUAL;
将结束TAG
作为分隔符,添加到update
:
UPDATE legal.gsm_failed_swaps_log
SET kpsa_response = REGEXP_SUBSTR(kpsa_response,
'Element:\s*([^<]+)</',
1,
1,
'i',
1)
WHERE ....
检查oracle
documentation。