- Notifications
You must be signed in to change notification settings - Fork 25.6k
Closed
Description
Null safe equality operator <=> is used by MySQL
and always returns either TRUE or FALSE even if the operants are null:
'foo' <=> null => false null <=> 'bar' => false null <=> null => true Relates to: #34956