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

前端 未结 14 1837
失恋的感觉
失恋的感觉 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 05:07

    <> is the valid SQL according to the SQL-92 standard.

    http://msdn.microsoft.com/en-us/library/aa276846(SQL.80).aspx

提交回复
热议问题