首页 > 作文

Mybatis中如何使用sum对字段求和

更新时间:2023-04-04 20:49:21 阅读: 评论:0

目录
使用sum对字段求和避免mybatis sum求和返回null

使用sum对字段求和

如下sql,为计算用户收益总和:

 <lect id="ge特长描述ttotalincome" resulttype="com.lws.test.modules.ur.entity.urincomeentity"> lect sum(income) as totalincome from income_log where uid = #{uid,jdbctype=bigint}</lect>

其中返回的求和字段类型需要设置为 bigdecimal :

public class urincomeent男老师女学生ity {  private bigdecimal totalincome;}

避免mybatis sum求和返回null

<lect id="getordersummoneybyurcode" parametertype="string" resulttype="bigdecimal">lec sum(order_money ) from gm_o房中房rder where add_uid = #{urcode}</lect>

如上写法如果没有结果的话就会返回null,其实我们希望返回的是0.00这种情况

<lect id="getordersummoneybyurcode" parametertype="string" resulttype="bigdecimal">lect coalesce(sum(order_money),0) from gm_order where add_ui23岁的女人d = #{urcode}</lect>

以上为个人经验,希望能给大家一个参考,也供应链管理希望大家多多支持www.887551.com。

本文发布于:2023-04-04 20:49:19,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/f9cd34d0b2ad3ab17999d29cdedbbd06.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Mybatis中如何使用sum对字段求和.doc

本文 PDF 下载地址:Mybatis中如何使用sum对字段求和.pdf

标签:字段   的是   就会   希望能
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
  • Mybatis中如何使用sum对字段求和
    目录使用sum对字段求和避免mybatis sum求和返回null使用sum对字段求和如下sql,为计算用户收益总和: