Difference between <> and != in SQL

前端 未结 6 1289
青春惊慌失措
青春惊慌失措 2021-01-01 15:38

What is the exact Difference between <> and != ?

6条回答
  •  無奈伤痛
    2021-01-01 16:15

    None whatsoever, syntactically.

    Both are inequality operators, <> is the SQL-92 standard, however its interchangable on some platforms with != (E.g. SQL Server)

提交回复
热议问题