Is there any difference between using the INNER JOIN clause versus including the match criteria in the WHERE clause?
I am revising existing code and was wondering what the advantages/disadvantes, pros/cons or performance differences are for:
INNER JOIN MACHINES ON ORD_MACH_OPS.MACH_NO = MACHINES.MACH_NO
or
WHERE ORD_MACH_OPS.MACH_NO = MACHINES.MACH_NO
The only thing I can see is reading this at a later date and being able to more quickly recognize that this is a join.
I am revising existing code and was wondering what the advantages/disadvantes, pros/cons or performance differences are for:
INNER JOIN MACHINES ON ORD_MACH_OPS.MACH_NO = MACHINES.MACH_NO
or
WHERE ORD_MACH_OPS.MACH_NO = MACHINES.MACH_NO
The only thing I can see is reading this at a later date and being able to more quickly recognize that this is a join.