两种 SQL 连接表示法之间有什么区别? [英] What's the difference between the two SQL join notations?

查看:29
本文介绍了两种 SQL 连接表示法之间有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SQL 1: select * from t1 join t2 on t1.f1 = t2.f2

SQL 2: select * from t1,t2 where t1.f1 = t2.f2

它们返回的结果是一样的.它们之间有什么区别吗?例如,在 DBMS 中如何运行它们,或者在查询计划中?

The results that they return are same. Are there any differences between them? For example, in how the DBMS runs them, or in the query plan?

推荐答案

这两个查询在操作上没有区别.

There is no operational difference between the two queries.

然而,显式连接符号是更好的学习和使用风格;将另一个留给(尚未更改的)遗留代码.

However, the explicit join notation is the better style to learn and use; leave the other for (as yet unchanged) legacy code.

这篇关于两种 SQL 连接表示法之间有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆