What#39;s the difference between comma separated joins and join on syntax in MySQL?(MySQL 中逗号分隔的连接和语法上的连接有什么区别?)
问题描述
例如,如果我有一个表Person",其中一个id"列引用了Worker"表中的id"列
For example if I were to have a table "Person" with a column "id" that references a column "id" in table "Worker"
这两个查询之间的区别是什么?它们产生相同的结果.
What would the difference between these two queries be? They yield the same results.
SELECT *
FROM Person
JOIN Worker
ON Person.id = Worker.id;
和
SELECT *
FROM Person,
Worker
WHERE Person.id = Worker.id;
谢谢
推荐答案
完全没有区别.
第一种表示使查询更具可读性,并且可以很清楚地看出哪个连接对应哪个条件.
First representation makes query more readable and makes it look very clear as to which join corresponds to which condition.
这篇关于MySQL 中逗号分隔的连接和语法上的连接有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL 中逗号分隔的连接和语法上的连接有什么区别?


基础教程推荐
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01