我需要在 varchar2 中获取以下查询的结果以显示在视图中。我尝试使用 dbms_lob.substr 如下,但它给了我错误“ORA-22922:不存在的 LOB 值”。
dbms_lob.substr((select wm_concat(tr_country) from NEXUS_TRAC_TRAVEL_PLAN_DTL where nexus_year = trdata.nexus_year and nexus_seq_no = trdata.nexus_seq_no),4000,1) ,
选择查询在 CLOB 中返回结果。