这篇文章主要讲解了“Mybatis中怎么使用sum对字段求和”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Mybatis中怎么使用sum对字段求和”吧!
使用sum对字段求和
如下sql,为计算用户收益总和:
<select id="getTotalIncome" resultType="com.lws.test.modules.user.entity.UserIncomeEntity"> select sum(income) as totalIncome from income_log where uid = #{uid,jdbcType=BIGINT} </select>
其中返回的求和字段类型需要设置为 BigDecimal :
public class UserIncomeEntity { private BigDecimal totalIncome;}
避免Mybatis sum求和返回null
<select id="getOrderSumMoneyByUserCode" parameterType="string" resultType="bigDecimal">SELEC SUM(ORDER_MONEY ) FROM gm_order WHERE ADD_UID = #{userCode}</select>
如上写法如果没有结果的话就会返回null,其实我们希望返回的是0.00这种情况
<select id="getOrderSumMoneyByUserCode" parameterType="string" resultType="bigDecimal">SELECT COALESCE(SUM(ORDER_MONEY),0) FROM gm_order WHERE ADD_UID = #{userCode}</select>
感谢各位的阅读,以上就是“Mybatis中怎么使用sum对字段求和”的内容了,经过本文的学习后,相信大家对Mybatis中怎么使用sum对字段求和这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!