Are the following two select SQL statements exactly equal? I usually use the join
keyword, but I found that the sqlite author uses the second form in some of his document pages on sqlite.org.
The "inner join...on" form
SELECT * FROM Order INNER JOIN OrderItem ON Order.Id = OrderItem.ParentId
The "where" form
SELECT * FROM Order, OrderItem WHERE Order.Id = OrderItem.ParentId
Update 1:
I found this question might be duplicated, it seems has something to do with the SQL89
and SQL92
standards, but it doesn't answer me the second form is an "INNER JOIN", "OUTER JOIN" or anything else.