oracle数据库查询clob字段(Querying oracle clob column)

工作中遇到此场景,google查询到stackoverflow上的讨论,得到解答,使用内置函数dbms_lob.compare。讨论如下:

Question:

I have a table with a clob column. Searching based on the clob column content needs to be performed. However

select * from aTable where aClobColumn = 'value';

fails but

select * from aTable where aClobColumn like 'value';

seems to workfine. How does oracle handle filtering on a clob column. Does it support only the  'like' clause and not the =,!= etc. Is it the same with other databases like mysql, postgres etc

Also how is this scenario handled in frameworks that implement JPA like hibernate ?

Answer: 

Yes, it's not allowed (this restriction does not affectCLOBs comparison in PL/SQL)

to use comparison operators like=,!=,<>and so on in SQL statements, when trying

to compare twoCLOBcolumns orCLOBcolumn and a character literal, like you do. To be

able to do such comparison in SQL statements, dbms_lob.compare() function can be used.

 select * from aTable where dbms_lob.compare(aClobColumn, 'value') = 0

In the above query, the'value'literal will be implicitly converted to theCLOBdata type.

To avoid implicit conversion, the'value'literal can be explicitly converted to theCLOB

data type usingTO_CLOB()function and then pass in to thecompare()function:

 select * from aTable where dbms_lob.compare(aClobColumn, to_clob('value')) = 0

 

转载于:https://my.oschina.net/u/213148/blog/173985

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值