mysql多表联查 sql语句的的疑惑

多表联查写法一
SELECT *
FROM theme
LEFT JOIN image
ON theme.head_img_id=image.id
where theme.id='1"

多表联查写法二
select *
from theme,image
where theme.head_img_id=image.id
AND theme.id='1'

请问下,写法一left 还有...join、right join、inner join这些写法与直接用select多个表有什么区别吗?
感觉select多个表的sql写法似乎更加方便便捷?

阅读 3.9k
2 个回答

关于join, cross join, inner join官方相关描述:

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.

大意:join, cross join, inner join句法是等价的,但仅仅是当inner join没有使用on的时候,否则就是cross join(交叉连接)

再说,(逗号)操作符,它在语义上也等价于inner join,回到你的问题,select多个表(也就是逗号分割表名)是等同于join的,例如以下是等价的:

select * from t1,t2

等价

select * from t1 join t2

再一个例子:

select * from t1,t2 where t1.id=t2.id

等价

select * from t1 inner join t2 on t1.id=t2.id

但是,真要说区别,就是,(逗号)比其它任何一个join的优先级都要低,尤其在混合,和join的sql语句中。例如:

select * from t1, t2 JOIN t3

等价于

select * from t1,(t2 join t3)

而不是

select * from (t1, t2) join t3

所以如果不注意这个差异,容易踩坑,以上内容大致都来源于mysql手册的join章节,建议楼主至少看三遍以上,链接:https://dev.mysql.com/doc/ref...

只要确保使用了合适的索引,join是很快的,一次sql执行和多次sql执行你说那个更快?

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题