Granada\ORM::select_expr PHP Méthode

select_expr() public méthode

Add an unquoted expression to the list of columns returned by the SELECT query. The second optional argument is the alias to return the column as.
public select_expr ( $expr, $alias = null )
    public function select_expr($expr, $alias = null)
    {
        return $this->_add_result_column($expr, $alias);
    }
ORM