mysql实现full join
Posted ノGHJ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql实现full join相关的知识,希望对你有一定的参考价值。
呵呵,,,有个坑,,mysql默认不支持full join 是吧. 什么是full join呢就是left+right join 可以使用union联表解决这个问题
union 链接 http://www.php20.com/forum.php?m ... &extra=page%3D1
原表链接 http://www.php20.com/forum.php?m ... &extra=page%3D1咱们的链接如下
[SQL] 纯文本查看 复制代码
1
2
3
|
select b.title,b.content,a.class_name,a.id as classid from news_class as a left join news as b on a.id=b.id union all select b.title,b.content,a.class_name,a.id as classid from news_class as a right join news as b on a.id=b.id; |
结果right和left 的合一块去了. 所以出现了重复内容
以上是关于mysql实现full join的主要内容,如果未能解决你的问题,请参考以下文章
Mysql 连接(left join, right join, inner join ,full join)
Mysql中Left Join 与Right Join 与 Inner Join 与 Full Join的区别
为啥 MySQL 会在 FULL OUTER JOIN 上报告语法错误?