'eq' => "{{column}} = ?",
'finset' => "FIND_IN_SET(?, {{column}})",
'from' => "{{column}} >= ?",
'gt' => "{{column}} > ?",
'gteq' => "{{column}} >= ?",
'in' => "{{column}} IN(?)",
'is' => "{{column}} IS ?",
'like' => "{{column}} LIKE ?",
'lt' => "{{column}} < ?",
'lteq' => "{{column}} <= ?",
'neq' => "{{column}} != ?",
'nin' => "{{column}} NOT IN(?)",
'nlike' => "{{column}} NOT LIKE ?",
'notnull' => "{{column}} IS NOT NULL",
'ntoa' => "INET_NTOA({{column}}) LIKE ?",
'null' => "{{column}} IS NULL",
'regexp' => "{{column}} REGEXP ?",
'seq' => null,
'sneq' => null,
'to' => "{{column}} <= ?"
Leave a Reply