What#39;s the difference between the two SQL join notations?(两种 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 连接表示法之间有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:两种 SQL 连接表示法之间有什么区别?
基础教程推荐
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01