摘要:
select n.campaignTitle,a.type,n.`key`,sum(a.totalCount),a.succuesCount,a.failedCount,a.pushedAt,a.finishedAt,a.batchNo fromxxx.push_records aleft join 阅读全文
摘要:
select ifnull(ROUND((select count(1) from.cpn_511_video_prize_giving_memberrecordwhere `vpKey` = #{key} and question_#{num} = #{rightAnswer})*100/coun 阅读全文
摘要:
<!-- 会员统计 --><select id="analytics" resultType="map"> <choose> <when test="module == 'AMOUNT'"> SELECT updatedAt,total,'AMOUNT' AS 'module' FROM xx.st 阅读全文
摘要:
很愚蠢的一个bug,解决了很久没有解决好,之前都是使用List<String> list=new ArrayList<String>(); 突然多了两次过滤之后,我给定义了另外两个list sendList 和一个 endList ,然后最后发现,使用的list还是最开始的list 阅读全文
摘要:
看到代码,一直报错空指针异常,然后就很好奇,为什么,List<String> a=null; a.addAll(b);这个时候会报错空指针异常,后面查看,是因为a 没有实例化。所以讲代码改一下,改成:List<String> a=new ArrayList<String>(); 然后再加上另一个集合 阅读全文
摘要:
1.因为查询大批量的数据,导致死锁现象,最可怕的是一张五百万数据的表与一张一千多万数据的表,相关联,导致数据一致无法展示出来,设置了很多地方,发现都不行,后面只能不关联那一个数据量非常大的表。 2.优化sql,避免使用函数,会导致正常的索引,检索不到,而导致查询不能优化。 3.解决死锁,这里一定要查 阅读全文
摘要:
/** * * @param params * @return */@Transactionalpublic Map<String, Object> updatePhotoPicOrder(Map<String, Object> params) { Map<String, Object> respo 阅读全文
摘要:
SimpleDateFormat onlyTimeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");Calendar calendar = Calendar.getInstance();Calendar calendarNow = Calend 阅读全文
摘要:
if(str4!="") { HashSet<String> h1 = new HashSet<String>(redisPhoneListReplaceList); HashSet<String> h2 = new HashSet<String>(haveSendPhoneList); for ( 阅读全文