多表联查写法一
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写法似乎更加方便便捷?
关于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的,例如以下是等价的:
等价
再一个例子:
等价
但是,真要说区别,就是,(逗号)比其它任何一个join的优先级都要低,尤其在混合,和join的sql语句中。例如:
等价于
而不是
所以如果不注意这个差异,容易踩坑,以上内容大致都来源于mysql手册的join章节,建议楼主至少看三遍以上,链接:https://dev.mysql.com/doc/ref...