I know, if you want the inner join of two tables, you can write SQL in the following syntax.
select tableA.columnA 
from tableA 
   inner join tableB on tableA.columnB=tableB.columnB
Alternatively, you can write the following.
select tableA.columnA 
from tableA, 
     tableB 
where tableA.columnB=tableB.columnB
so, which is better in terms of performance?
 
     
    