摘要:
业务:查询订单数量和订单总金额 根据国家分组当然还有别的条件,这里不全写了select count(DISTINCT t.customer_id) as customerNum, 去重统计一个国家的下单客户数 sum(t.total_amount) as saleAmount, 统计一个国家的销售金 阅读全文
摘要:
可以left join 之后加and 条件。这样查询出来的记录不会少,为空的也能查出来,但是仍然能筛选 例子: select t.product_id, t.unit_price as price, t.number, t.item_total_price, t.remark, t.im_cost_ 阅读全文
摘要:
1.生产和本地运行结果不一样 这里这个role 的list 有ROLE_ADMIN 和ROLE_PFADMIN 两个,并不包含 ROLE_WIG_ADMIN 本地不会进if。但是线上会进。 2.https://blog.csdn.net/tgyman/article/details/53606725 阅读全文
摘要:
<if test="skuList != null and skuList.length > 1"> and <foreach collection="skuList" item="sku" index="index" open="(" close=")" separator="or"> t.sku 阅读全文
摘要:
https://blog.csdn.net/qq_33829547/article/details/80279488 removeif 是满足条件的剔除掉 filter是把满足条件的过滤出来 stream和list是可以互相转换的 阅读全文
摘要:
select * from user t where t.name in (select name from user group by name on having count(name) > 1) user 表 ,然后查询name字段重复的记录 当然select * 不建议哈,这里是方便记录 阅读全文
摘要:
https://blog.csdn.net/qq_36408229/article/details/96604019 原文 阅读全文
摘要:
https://www.cnblogs.com/codecat/p/11402056.html 原文 阅读全文