We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8391990 commit 50b380eCopy full SHA for 50b380e
lib/sql.js
@@ -149,7 +149,7 @@ var sql = {
149
else if (key === '>' || key === 'greaterThan') return attrStr + '>' + valueStr;
150
else if (key === '>=' || key === 'greaterThanOrEqual') return attrStr + '>=' + valueStr;
151
else if (key === '!' || key === 'not') {
152
- if (value === null) return attrStr + 'IS NOT NULL';
+ if (value === null) return attrStr + ' IS NOT NULL';
153
else return attrStr + '<>' + valueStr;
154
}
155
else if (key === 'like') return attrStr + ' LIKE \'' + nakedButClean + '\'';
0 commit comments