近期有一个场景需要用到三表左外连接,以mysql为例,将实现方法记录如下。
假设有如下三张表:
image.png
实现三表左外连接:
select * from (test2 left join test3 on test2.query_word = test3.query_word) left join test5 on test2.query_word = test5.query_word;
image.png
select test2.query_word, test2.query_counts, test3.click_counts, test5.item_counts from (test2 left join test3 on test2.query_word = test3.query_word) left join test5 on test2.query_word = test5.query_word;
image.png
网友评论