Difference between <> and != in SQL

后端 未结 6 705
青春惊慌失措
青春惊慌失措 2021-01-01 14:10

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

6条回答
  •  甜味超标
    2021-01-01 15:00

    <> 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.

提交回复
热议问题