What is “join” in MySQL without anything in front?
本问题已经有最佳答案,请猛点这里访问。
1 2 3 |
我浏览了大量关于左连接、右连接、内部连接和完全外部连接的资源,但是我不知道这个"连接"是什么意思。这是条捷径吗?如果没有,这是什么?
谢谢。
只需阅读MySQL中的文档即可。上面写着。
In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents (they can replace each other). In standard SQL, they are not equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used otherwise.
号
回答你的问题:连接和内部连接一样