比方說,在表的某些字段中,我有以下字符串:a=A#abc=Y#sps=Y#
。 我想查詢的a
並獲得A
與此查詢:使用REGEXP_SUBSTR從字符串提取屬性值
select UPPER(REGEXP_SUBSTR(REGEXP_SUBSTR(
'a=Y#abc=Y#sps=Y#' ,
'a\=([^#]+)#?'), '[[:alpha:]]')) from dual;
我得到:
a
---------------
N
1 row selected
歡迎來到Stackoverflow!爲了充分利用網站,提出一些好問題很重要。有關提問的指南,請訪問:http://stackoverflow.com/help/how-to-ask –