S
Smartin
Using A97 & up, is there a difference in how these table joining
constructions are executed?
SELECT *
FROM TblA INNER JOIN TblB ON TblA.ID = TblB.ID;
VS.
SELECT *
FROM TblA, TblB
WHERE TblA.ID = TblB.ID
?
FWIW I grew up learning the former, but have found Oracle's
implementation of the latter to be much easier to read, especially when
multiple tables are joined.
Thanks for any insight,
constructions are executed?
SELECT *
FROM TblA INNER JOIN TblB ON TblA.ID = TblB.ID;
VS.
SELECT *
FROM TblA, TblB
WHERE TblA.ID = TblB.ID
?
FWIW I grew up learning the former, but have found Oracle's
implementation of the latter to be much easier to read, especially when
multiple tables are joined.
Thanks for any insight,