phprs\ezsql\rules\select\HavingRule::havingArgs PHP Method

havingArgs() public method

=> "HAVING a=1 AND b IN(1,2) AND c BETWEEN 1 AND 2 AND d<>1"
public havingArgs ( array $args ) : OrderByRule
$args array
return OrderByRule
    public function havingArgs($args)
    {
        WhereImpl::havingArgs($this->context, $args);
        return new OrderByRule($this->context);
    }