Inner join vs Where

后端 未结 19 1047
庸人自扰
庸人自扰 2020-11-22 05:20

Is there a difference in performance (in oracle) between

Select * from Table1 T1 
Inner Join Table2 T2 On T1.ID = T2.ID

And



        
相关标签:
19条回答
  • 2020-11-22 06:13

    They're both inner joins that do the same thing, one simply uses the newer ANSI syntax.

    0 讨论(0)
提交回复
热议问题