左连接和左外连接有什么区别?

what is the difference between left join and left outer join?

我创建了 2 个表

CREATE TABLE table1(customerName VARCHAR(20),custid NUMBER ,order_id NUMBER ,price NUMBER );
CREATE TABLE table2(id NUMBER ,salary NUMBER );

现在,我尝试使用查询

SELECT t1.customername,t1.custid,t2.salary FROM table1 t1 left join table2 t2 ON t1.custid = t2.id;
SELECT t1.customername,t1.custid,t2.salary FROM table1 t1 left outer join table2 t2 ON t1.custid = t2.id;

但我得到了相同的输出。他们在内部工作上有什么区别吗?或者两者相同!?

OUTER 关键字在最流行的 SQL 发行版中是可选的,这意味着 LEFT JOINLEFT OUTER JOIN

之间绝对没有区别