Performance of SQL “EXISTS” usage variants

后端 未结 9 744
-上瘾入骨i
-上瘾入骨i 2020-12-05 04:39

Is there any difference in the performance of the following three SQL statements?

SELECT * FROM tableA WHERE EXISTS (SELECT * FROM tableB WHERE tableA.x = ta         


        
9条回答
  •  不知归路
    2020-12-05 05:42

    Execution Plan. Learn it, use it, love it

    There is no possible way to guess, really.

提交回复
热议问题