having method
Adds a HAVING clause.
Implementation
QueryBuilder having(String column, String operator, dynamic value) {
final paramName = 'h${++_paramIndex}';
_having = '${_quoteIdentifier(column)} $operator @$paramName';
_params[paramName] = value;
return this;
}