* The idea is basically a "is null or equals" operator. See HHH-8172
Including the MySQL operator, the complete list of possibilities include: * where a.name ~ 'steve' * where a.name (=) 'steve' * where a.name ?= 'steve' * where a.name <=> 'steve' * where a.name matches 'steve'
|