whereNotNull method
Adds a WHERE column IS NOT NULL clause.
Implementation
QueryBuilder whereNotNull(String column) {
final prefix = _wheres.isEmpty ? '' : 'AND ';
_wheres.add('$prefix${_quoteIdentifier(column)} IS NOT NULL');
return this;
}
Adds a WHERE column IS NOT NULL clause.
QueryBuilder whereNotNull(String column) {
final prefix = _wheres.isEmpty ? '' : 'AND ';
_wheres.add('$prefix${_quoteIdentifier(column)} IS NOT NULL');
return this;
}