I am going through a tutorial for MySql, and I came through the following query.
mysql> select null <> null; +--------------+ | null <> null | +--
select null <> null;
Here <> is not null safe operator. It is Not equal operator. Refer official website of mysql. Null safe operator is <=>
<>
null safe operator
Not equal operator
Null safe operator
<=>