ORM::max PHP 메소드

max() 공개 메소드

Will return the max value of the choosen column.
public max ( $column )
    public function max($column)
    {
        return $this->_call_aggregate_db_function(__FUNCTION__, $column);
    }
ORM