mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Merge pull request #1566 from mackeyhan/dbquery-patch
Fix 'not in' operation
This commit is contained in:
commit
12ccb356b0
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue