MysqliDb::orHaving PHP Method

orHaving() public method

This method allows you to specify multiple (method chaining optional) OR HAVING statements for SQL queries.
public orHaving ( string $havingProp, mixed $havingValue = null, string $operator = null ) : MysqliDb
$havingProp string The name of the database field.
$havingValue mixed The value of the database field.
$operator string Comparison operator. Default is =
return MysqliDb
    public function orHaving($havingProp, $havingValue = null, $operator = null)
    {
        return $this->having($havingProp, $havingValue, $operator, 'OR');
    }