Merge pull request #1566 from mackeyhan/dbquery-patch

Fix 'not in' operation
This commit is contained in:
Kijin Sung 2021-01-18 16:31:33 +09:00 committed by GitHub
commit 12ccb356b0
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
{