使用MyBatis查询 返回类型为int,但是当查询结果为空NULL,会报异常。

例如:

  <select id="getPersonRecordId" parameterType="java.lang.String" resultType="int">
select role_id
from p_person_role
where stffe_id = #{stffeId,jdbcType=VARCHAR}
</select>

当记录不存在时会报以下错误

Servlet.service() for servlet [springDispatcherServlet] in context with path [/xxxx] threw exception [Request processing failed;
nested exception is org.apache.ibatis.binding.BindingException: Mapper method 'com.xxx.PersonRoleRelationMapper.getPersonRecordno attempted to return null from a method with a primitive return type (int).]
with root cause org.apache.ibatis.binding.BindingException: Mapper method 'com.xxx.PPersonRoleRelationMapper.getPersonRecordno attempted to return null from a method with a primitive return type (int).

若遇到该问题,可使用MySQL的IFNULL函数和MAX函数,将返回的NULL值转换为0。例如,可将上述SQL语句改为:

select IFFULL(MAX(role_id),) AS role_id  from  p_person_role where  stffe_id = #{stffeId,jdbcType=VARCHAR}

在SQLSERVER中我们可以这样写:
select ISNULL(max(data),0) ...


在Oracle中我们可以这样写:
select NVL(max(data),0) ...


对于所有数据库适用的方法可以这样写:
select COALESCE(max(data),0) ...


当然以上max也可以用sum函数代替。

最新文章

  1. mongodb架构篇
  2. java程序打包成jar
  3. Linux UserSpace Back-Door、Rootkit SSH/PAM Backdoor Attack And Defensive Tchnology
  4. Java 日期格式化工具类
  5. jquery垂直展开折叠手风琴二级菜单
  6. Oracle truncate和delete的区别
  7. eclipse插件在线发布发布和版本更新(web site) 转
  8. When you’re nearly 40 and unmarried, and you realize you’re going to be okay
  9. Ice_cream’s world III(prime)
  10. Java中String、StringBuilder以及StringBuffer
  11. 使用sqlldr向Oracle导入大的文本(txt)文件
  12. 老司机教你下载tumblr上视频和图片的正确姿势
  13. [leetcode-494-Target Sum]
  14. C语言知识点总结
  15. 深入理解Linux内核 学习笔记(3)
  16. Vue2.x源码学习笔记-Vue构造函数
  17. which命令和bin目录
  18. 最完整的mac安装caffe
  19. 数学整合 新(LUOGU)
  20. 4 MySQL程序概述(包含mysql配置文件配置原理)-学习笔记

热门文章

  1. HDU 2492 Ping pong(数学+树状数组)(2008 Asia Regional Beijing)
  2. /etc/fstab 文件如何填写(转)
  3. Thunder团队第五周 - Scrum会议5
  4. C语言 命令行参数 函数指针 gdb调试
  5. BluetoothSocket详解
  6. 总结get和post区别
  7. winform Form窗体和UserControl用户空间嵌入Panel容器并填充
  8. 【Maven】Snapshot和Release版本的区别
  9. ARC077D 11 组合数
  10. [Vue源码分析] v-model实现原理