mysql-模拟全连接处理
方案:通过union连接查询出所有需要的特殊标签,然后在通过left join与union中的结果集做多表比较。
sql
select t.`code`,a.`count` as count_a,b.`count` as count_b from( select `code` from tmp_a a union select `code`from tmp_b b) t left join tmp_a a on t.`code`=a.`code` left join tmp_b b on t.`code`=b.`code`;
两张表
select * from tmp_a; select * from tmp_b;
知识只有共享才能传播,才能推崇出新的知识,才能学到更多,这里写的每一篇文字/博客,基本都是从网上查询了一下资料然后记录下来,也有些是原滋原味搬了过来,也有时加了一些自己的想法