문제

I'm trying to switch boolean field using the following hql:

update Entity e set e.booleanField = not e.booleanField where e.id = ?1;

Unfortunately "QuerySyntaxException: unexpected token: not near..." was thrown.

My question is: is there some unary operator for hibernate that supports such expression? Or any well known trick?

sql supports such queries (postgresql):

update entity_table set booleanField = not(booleanField);
도움이 되었습니까?

해결책

I would just use a native SQL query for this.

다른 팁

To toggle the boolean property, equivalent to the not unary operator, under HQL/JPQL, use:

UPDATE entity e SET e.booleanField = (e.booleanField=false)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top