上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 22 下一页
摘要: 业务:查询订单数量和订单总金额 根据国家分组当然还有别的条件,这里不全写了select count(DISTINCT t.customer_id) as customerNum, 去重统计一个国家的下单客户数 sum(t.total_amount) as saleAmount, 统计一个国家的销售金 阅读全文
posted @ 2022-01-19 15:35 了悟 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 可以left join 之后加and 条件。这样查询出来的记录不会少,为空的也能查出来,但是仍然能筛选 例子: select t.product_id, t.unit_price as price, t.number, t.item_total_price, t.remark, t.im_cost_ 阅读全文
posted @ 2022-01-17 16:28 了悟 阅读(938) 评论(0) 推荐(0) 编辑
摘要: 1.生产和本地运行结果不一样 这里这个role 的list 有ROLE_ADMIN 和ROLE_PFADMIN 两个,并不包含 ROLE_WIG_ADMIN 本地不会进if。但是线上会进。 2.https://blog.csdn.net/tgyman/article/details/53606725 阅读全文
posted @ 2022-01-11 15:50 了悟 阅读(358) 评论(0) 推荐(0) 编辑
摘要: <if test="skuList != null and skuList.length > 1"> and <foreach collection="skuList" item="sku" index="index" open="(" close=")" separator="or"> t.sku 阅读全文
posted @ 2021-12-30 11:34 了悟 阅读(180) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_33829547/article/details/80279488 removeif 是满足条件的剔除掉 filter是把满足条件的过滤出来 stream和list是可以互相转换的 阅读全文
posted @ 2021-12-29 13:53 了悟 阅读(386) 评论(0) 推荐(0) 编辑
摘要: select * from user t where t.name in (select name from user group by name on having count(name) > 1) user 表 ,然后查询name字段重复的记录 当然select * 不建议哈,这里是方便记录 阅读全文
posted @ 2021-12-06 18:06 了悟 阅读(365) 评论(2) 推荐(1) 编辑
摘要: https://blog.csdn.net/qq_36408229/article/details/96604019 原文 阅读全文
posted @ 2021-12-03 17:11 了悟 阅读(266) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/codecat/p/11402056.html 原文 阅读全文
posted @ 2021-12-03 14:23 了悟 阅读(764) 评论(0) 推荐(0) 编辑
摘要: sql中经常会出现如下所示的这种异常,Infinity 无穷大的意思, 所以造成的原因大部分是 除数为0 可能是除数就是0,也可能是做差,然后减出了0。 之后进行了除法运算,围绕这个方向去检查代码,相信能找到异常的地方。 这个DeBUG的时候 无穷大一般显示 NaN 阅读全文
posted @ 2021-11-29 15:07 了悟 阅读(646) 评论(0) 推荐(0) 编辑
摘要: 这是因为在xml中配置了标签,但是标签中没有sql代码,会报出这个异常,仔细检查xml中的sql代码,避免标签中无sql代码的情况出现。 我上周五的时候写完逻辑,没写sql。周一来了忘了,直接测试报的这个错。脑子呀 阅读全文
posted @ 2021-11-29 15:04 了悟 阅读(2523) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 22 下一页