我得到一个错误:
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
);
提前谢谢。
暂无答案!
目前还没有任何答案,快来回答吧!