这两个连接将给我相同的结果:
SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK
与
SELECT * FROM table INNER JOIN otherTable ON table.ID = otherTable.FK
语句之间的性能或其他方面是否有区别?
不同的SQL实现之间是否有所不同?
2
看到这个问题:< stackoverflow.com/questions/448023?sort=newest >
—
Joel Coehoorn
附带说明:CROSS JOIN是一种很好的联接类型(与INNER JOIN不同)。
—
Serge