op any/all(array)需要右侧的数组postgresql spring data jpa

vd8tlhqk  于 2021-07-13  发布在  Java
关注(0)|答案(0)|浏览(538)

我得到一个错误:
op any/all(数组)需要右侧的数组
查询和查询方法如下:

@Query(value = "SELECT  *
from public.items_table t
where lower(CONCAT(t.item_id,' ',t.color,' ',t.details,' ',t.material,' ',t.quantity,' ',t.selling_price,' ',t.trader)) like all (:hs)
    and t.store = :store
    and t.status = :itemStatus
    and t.item_type = :itemType",
    nativeQuery = true
) List < ItemEntity > search(
    @Param("hs") String [] hs,
    @Param("itemType") String itemType,
    @Param("itemStatus") String itemStatus,
    @Param("store") String store
);

提前谢谢。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题