Fix 'not in' operation

This commit is contained in:
mackeyhan 2021-01-18 15:18:25 +09:00 committed by GitHub
parent 78452fc2cb
commit e64cbfbb9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -208,7 +208,7 @@ class VariableBase
case 'not_in':
if ($is_expression)
{
$where = sprintf('%s IN %s', $column, $value);
$where = sprintf('%s NOT IN %s', $column, $value);
}
else
{