phprs\ezsql\rules\basic\WhereRule::whereArgs PHP 메소드

whereArgs() 공개 메소드

=> "WHERE a=1 AND b IN(1,2) AND c BETWEEN 1 AND 2 AND d<>1"
public whereArgs ( string $args ) : OrderByRule
$args string
리턴 OrderByRule
    public function whereArgs($args)
    {
        WhereImpl::whereArgs($this->context, $args);
        return new OrderByRule($this->context);
    }