Postgres查询必须是boolean类型

时间:2017-07-24 18:20:20

标签: java postgresql jdbi

我正在使用skife来帮助我的数据库查询。我有下面的查询和方法。

@SqlQuery("select * from profile where profile_id >= :from and profile_id < :to")
List<Profile> findAllInRange(@Bind("from")int from, @Bind("to")int to);

我收到以下错误

org.postgresql.util.PSQLException: ERROR: argument of AND must be type boolean, not type bigint

但是如果我执行这个查询

select * from profile where profile_id >= 1 and profile_id < 50

我的RDBMS成功返回结果。

我错过了什么?

1 个答案:

答案 0 :(得分:1)

归功于MinMiguelM

我需要在\\运算符

之前放置<