sql 拼接 concat 保存小数 ROUND

 select pr.id  ,pr.store_id, info.store_name,pr.product_id,
    product.product_name , product.specification , product.unit ,product.generate_manufacturer ,pr.purchase_price as nowPurchasePrice,
   pr.retail_price as nowRetailPrice,(pr.retail_price - pr.purchase_price) AS grossProfit,
    concat(ROUND((pr.retail_price - pr.purchase_price)/pr.retail_price * 100,2),'%') AS grossProfitMargin,
    pr.vip_price as nowVipPrice,pr.scattered_price as nowDisassemblyPrice,pr.vip_scattered_price as nowVipDisassemblyPrice,product.haidian_code
    from t_pos_product_info pr
    LEFT JOIN t_erp_store_info info on pr.store_id = info.id
    LEFT JOIN t_erp_product_info product on product.id = pr.product_id
    <where>
        <if test="dto.companyId != null ">
            and pr.company_id = #{dto.companyId}
        </if>
        <if test="dto.storeId != null and dto.storeId != '' ">
            and pr.store_id = #{dto.storeId}
        </if>
        <if test="dto.keyword != null and dto.keyword != ''">
            and (
            instr(product.haidian_code,#{dto.keyword})
            or instr(product.product_name,#{dto.keyword})
            or instr(product.mnemonic_code,#{dto.keyword})
            or instr(product.bar_code,#{dto.keyword})
            )
        </if>
    </where>
    ORDER BY pr.create_time desc

concat拼接函数 ROUND( ,2)保留两位小数

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值