nclob字段的 能不能 union。
不能的话要怎么处理?

解决方案 »

  1.   

    除了 union all 外,其他的集合运算(union、minus、intersect)都不支持 lob 类型列。
      

  2.   

    union all 外,其他的集合运算(union、minus、intersect)都不支持 lob 类型列。
      

  3.   

    不支持The set operators are not valid on columns of type BLOB, CLOB, BFILE, VARRAY, or nested table. 
      

  4.   

    --测试了一下,union all可以,其它的不行 create table ta(id int ,name blob);create table tb(id int ,name blob);select * from ta
    union all
    select * from tb;