For SQL, when did it start to be desirable to always use the words "Inner Join" instead of implicitl
- by Jian Lin
For SQL, when did it start to be desirable to always use the words "Inner Join" instead of implicitly joining by:
select * from t1, t2 where t1.ID = t2.ID;
? Is it just for style or to distinguish between outer join or are there other reasons for it?