Hi All,
Is there any difference between joining tables using inner join or specifying the join conditions after the where clause.
Example:
select column1,column2 from table1 inner join table2 on table1.field1 = table2.field2
versus
sel
Is there any difference between joining tables using inner join or specifying the join conditions after the where clause.
Example:
select column1,column2 from table1 inner join table2 on table1.field1 = table2.field2
versus
sel