我在我的 ORACLE(10g) 数据库中使用以下查询。
SELECT * from student_table where student_no like '%STUDENT%' INTERSECT SELECT * from student_table where student_no in ('STUDENT1234','STUDENT5678')
我收到如下错误: java.sql.SQLSyntaxErrorException:ORA-00932:不一致的数据类型:预期 - 得到 CLOB
任何想法如何解决此错误?