如何在where子句中使用带有子字符串的JPA CriteriaBuilder?

时间:2016-05-07 16:41:28

标签: jpa substring

我想要一个SQL where子句,如下所示:

where t.xcode = substring(xxx, 1, length(t.xcode))

如何通过JPA CriteriaBuilder执行此操作?

我试过

cb.equal(path.get('xcode').as(String.class), xxx.substing(1, ???))

但我不知道如何定义???一部分。

0 个答案:

没有答案