如下
select * from test where column1 !=null ,在java 中拼的sql 语句,结果提示:
“ERROR org.hibernate.util.JDBCExceptionReporter - ORA-00932: 数据类型不一致: 应为 -, 但却获得 CLOB”
7 个解决方案
#1
select * from test where column1 is not null
#2
问了一个oracle的dba,说只需where xx==null就行,- -
#3
顶
#4
.
#5
楼主是吧 java 和 oracle混为一谈了吧
where 中能用 != ???? 应该is not null 或者 先查出 null 的 is null
where 中能用 != ???? 应该is not null 或者 先查出 null 的 is null
#6
哥们,oracle中能用的吧!
不过clob类型的好像不能这么用吧。没用过。。。
#7
#1
select * from test where column1 is not null
#2
问了一个oracle的dba,说只需where xx==null就行,- -
#3
顶
#4
.
#5
楼主是吧 java 和 oracle混为一谈了吧
where 中能用 != ???? 应该is not null 或者 先查出 null 的 is null
where 中能用 != ???? 应该is not null 或者 先查出 null 的 is null
#6
哥们,oracle中能用的吧!
不过clob类型的好像不能这么用吧。没用过。。。