This is an operator with zero safe comparison. And this is awesome.
This means that if you are trying to query your database for a variable, such as a string, which can sometimes be null, you want to use it. For example, if you try to search for SELECT * FROM table WHERE x = NULL , it will not return anything, but if you do SELECT * FROM table WHERE x <=> NULL , this will work.
source share