Is there a reason MySQL doesn't support FULL OUTER JOINS?

前端 未结 6 876
醉话见心
醉话见心 2020-12-29 05:42

Is there a reason MySQL doesn\'t support FULL OUTER JOINS? I\'ve tried full outer join syntax in mysql many times and it never worked, just found out its not supported by my

6条回答
  •  旧时难觅i
    2020-12-29 06:39

    I don't believe the MySQL devs have ever stated any technical reason why it might be difficult to implement.

    But MySQL, like most DBMSs, has many places where it does not fully implement the ANSI standard. Since FULL OUTER JOIN is a rarely-used feature, and can typically be replaced by a UNION workaround, there is little pressure to get it fixed.

    I suggest adding your voice to bug 18003.

提交回复
热议问题