就像在Spring JpaRepository中查询TEXT数据类型字段(postgres)一样

时间:2016-06-07 04:44:46

标签: spring postgresql spring-data-jpa

我的Postgres数据库中有一个对象NewsItem,其中字段body是TEXT数据类型,column contains only IDs.

我想使用JpaRepository执行Like查询。

select * from news.news_item newsitem where lower(convert_from(loread(lo_open(newsitem.body::int, x'40000'::int), x'40000'::int),  'UTF8')) like lower(('%'||'query'||'%'));

^ pgAdmin中的此查询返回正确的结果。 如何将此查询转换为在Spring JpaRepository中工作?

0 个答案:

没有答案