Transact-SQL shorthand join syntax?

前端 未结 5 523
轻奢々
轻奢々 2020-12-06 10:24

I have noticed a few times when working on legacy code, that you can do left and right outer joins in sql by using the

=*

as kind of short

5条回答
  •  Happy的楠姐
    2020-12-06 11:08

    The =* and *= are not complaint with current SQL standards, I believe these operators will be deprecated soon you should always use the standard join syntax. The other operators that you mention are confusing and need to go away, I cringe when I see these in database objects.

提交回复
热议问题