where method
Implementation
Query where(column, operator, value) {
if (!_lastQuery.contains('WHERE')) {
_lastQuery += ' WHERE ';
} else {
_lastQuery += ' AND ';
}
_lastQuery += (column) + ' ' + (operator ?? '=') + ' ' + (value == null ? 'NULL' : checkIntType(value));
return this;
}