网站正在建设中 页面,浅谈阿里企业的电子网站建设,商家联盟会员管理系统,专业网站设计企业目前mysql还不支持full join#xff0c;只能使用left join、union、right join来实现。但使用这个方法解决多次full join的话代码量非常庞大#xff0c;一直在思考有没有其他替代方法。今天解决一个问题的时候突然想到了一个替代方法#xff1a;使用行列转换。这个方法有一定…目前mysql还不支持full join只能使用left join、union、right join来实现。但使用这个方法解决多次full join的话代码量非常庞大一直在思考有没有其他替代方法。今天解决一个问题的时候突然想到了一个替代方法使用行列转换。这个方法有一定的局限性就是连接条件在2个连接表中最多只能有一条记录(不过大部分连接情况也就是连接条件在连接表中最多只有一条记录)。下面是我具体实现的sqlselectb.the_day, max(if(b.type_id 1, b.amount, 0)) purchase_amount, max(if(b.type_id 1, b.interest, 0)) purchase_interest,max(if(b.type_id 2, b.amount, 0)) withdrawal_amount, max(if(b.type_id 2, b.interest, 0)) withdrawal_interestfrom(selecta.the_day, round(max(if(a.type_id 1, a.money, 0))) amount, max(if(a.type_id 2, a.money, 0)) interest, 1 type_idfrom(selectdate(pe.purchase_begin_time) the_day, sum(pe.amount) money, 1 type_idfrompurchase peinner join product pt on pe.product_id pt.product_id and pt.type_id 9where pe.purchase_status_id 4 and pe.purchase_begin_time 2015-08-13 21:00:00group by the_dayunion allselectdate(uci.creat_time) the_day, sum(uci.interest) money, 2 type_idfromuser_current_interest uciwhere uci.type IN and uci.creat_time 2015-08-14group by the_day) agroup by a.the_dayunion allselectdate(wd.withdrawal_begin_time) the_day, sum(wd.amount), sum(wd.profit), 2 type_idfromwithdrawal wdwhere wd.withdrawal_status_id in (4, 5) and wd.product_id 0 and wd.withdrawal_begin_time 2015-08-14group by the_day) bgroup by b.the_day; 大致思路说下2个被连接表增加一个标识字段使用不同的值之后将这2个表union all下使用连接条件将union all的结果分组且使用行列转换。