Should I use != or <> for not equal in T-SQL?

前端 未结 14 1615
失恋的感觉
失恋的感觉 2020-11-22 04:23

I have seen SQL that uses both != and <> for not equal. What is the preferred syntax and why?

14条回答
  •  清酒与你
    2020-11-22 04:55

    They're both valid and the same with respect to SQL Server,

    https://docs.microsoft.com/en-us/sql/t-sql/language-elements/not-equal-to-transact-sql-exclamation

提交回复
热议问题