有一个BLOB列,其中包含以下数据:
nested_list
我选择上面的列以显示BLOB数据,如下所示:
{{Property1 {property1_string}} {Property2 {property2_string}} {Property3 {property3_string}} {Property4 {property4_string}} {Property5 {property5_string}}}
我只需要显示BLOB列的第4个属性的数据,因此以下内容:
{Property4 {property4_string}}
因此,我需要帮助来为此目的创建必要的选择。
谢谢。
答案 0 :(得分:0)
这将起作用:
select substr(cast(blobfieldname as
varchar2(2000)),instr(cast(blobfieldname as
varchar2(2000)),'{',1,8)),instr(cast(blobfieldname as
varchar2(2000)),'}',1,8))-
instr(cast(blobfieldname as varchar2(2000)),'{',1,8))) from tablename;
答案 1 :(得分:0)
您可以使用REGEXP_SUBSTR
。
select REGEXP_SUBSTR(s,'[^{} ]+', 1, 2 * :n) FROM t;
其中n是要从数据中提取的第n个属性字符串。
n = 1 gives property1_string
n = 2 gives property2_string
..
and so on
请注意,s
应该是utl_raw.cast_to_varchar2
的输出