Mysql实现full join的替换方法

目前mysql还不支持full join,只能使用left join、union、right join来实现。但使用这个方法解决多次full join的话代码量非常庞大,一直在思考有没有其他替代方法。

今天解决一个问题的时候突然想到了一个替代方法:使用行列转换。

这个方法有一定的局限性,就是连接条件在2个连接表中最多只能有一条记录(不过大部分连接情况也就是连接条件在连接表中最多只有一条记录)。

下面是我具体实现的sql:

select
  b.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_interest
from
  (select
    a.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_id
  from
    (select
      date(pe.purchase_begin_time) the_day, sum(pe.amount) money, 1 type_id
    from
      purchase pe
    inner join product pt on pe.product_id = pt.product_id and pt.type_id = 9
    where pe.purchase_status_id = 4 and pe.purchase_begin_time < '2015-08-13 21:00:00'
    group by the_day
    union all
    select
      date(uci.creat_time) the_day, sum(uci.interest) money, 2 type_id
    from
      user_current_interest uci
    where uci.type = 'IN' and uci.creat_time < '2015-08-14'
    group by the_day
    ) a
  group by a.the_day
  union all
  select
    date(wd.withdrawal_begin_time) the_day, sum(wd.amount), sum(wd.profit), 2 type_id
  from
    withdrawal wd
  where wd.withdrawal_status_id in (4, 5) and wd.product_id = 0 and wd.withdrawal_begin_time < '2015-08-14'
  group by the_day
  ) b
group by b.the_day;

大致思路说下:2个被连接表增加一个标识字段,使用不同的值,之后将这2个表union all下,使用连接条件将union all的结果分组且使用行列转换。



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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值