简体   繁体   中英

OUTER in LEFT OUTER JOIN MySQL

In MS SQL-SERVER OUTER does not pay any role . Do it plays any role in MySQL?

Do these two request identical?:

SELECT Name as Customers
FROM Customers
LEFT OUTER JOIN Orders
ON Customers.Id = Orders.CustomerId
WHERE Orders.Id IS NULL

and

SELECT Name as Customers
FROM Customers
LEFT JOIN Orders
ON Customers.Id = Orders.CustomerId
WHERE Orders.Id IS NULL

I did not find information in official documentation yet .

They are identical in MySQL as well.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM