Readability
Correctness
The SQL natural join is a type of equi-join that implicitly combines tables based on columns with the same name and type. The join predicate arises implicitly by comparing all columns in both tables that have the same column names in the joined tables.
The following issues may arise:
SELECT col1
FROM d1
NATURAL
INNER
JOIN d2
Use an ANSI-92 compliant join syntax
SELECT col1
FROM d1
INNER
JOIN d2
ON(d1.id=d2.id)
None