2

我目前正在使用以下映射:

@Select ("select count(*) from something where id = 2344")
int userExists();

但我想有类似的东西:

@Select ("select count(*) from something where id = 2344")
boolean userExists();

我可以将 0 转换为 false 并将所有 > 0 转换为 true 吗?

我正在使用甲骨文。因此我希望 my-batis 提供某种返回类型映射。

4

1 回答 1

7

以下是在 Oracle 中使用 case 语句返回布尔值的方法:

@Select ("select case when count(*) > 0 then 1 else 0 end result from something where id = 2344")
boolean userExists();

希望对您有所帮助。

于 2015-09-24T09:01:37.647 回答