whereNotNull method
WHERE column IS NOT NULL
Implementation
@override
QueryBuilderInterface<T> whereNotNull(String column) {
return _addWhere({
'type': 'NotNull',
'column': column,
'boolean': 'AND',
});
}
WHERE column IS NOT NULL
@override
QueryBuilderInterface<T> whereNotNull(String column) {
return _addWhere({
'type': 'NotNull',
'column': column,
'boolean': 'AND',
});
}