Will ANSI JOIN vs. non-ANSI JOIN queries perform differently?

前端 未结 7 1762
我在风中等你
我在风中等你 2020-11-22 02:25

I have my business-logic in ~7000 lines of T-SQL stored procedures, and most of them has next JOIN syntax:

SELECT A.A, B.B, C.C
FROM aaa AS A, bbb AS B, ccc          


        
相关标签:
7条回答
  • 2020-11-22 03:28

    Execute both and check their query plans. They should be equal.

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