Difference between <> and != in SQL

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

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

6条回答
  •  庸人自扰
    2021-01-01 16:24

    <> is the only inequality operator in the SQL Standard.

    Lot's of SQL database systems support the use of != including PostgreSQL, SQL Server, MySQL, SQLite, Oracle & Firebird, but some don't, including Apache Derby.

提交回复
热议问题