addOrderBy() public abstract method
Adds additional ORDER BY columns to the query.
See also orderBy().
public abstract $this addOrderBy ( $columns ) | ||
---|---|---|
$columns | string|array |
The columns (and the directions) to be ordered by. Columns can be specified in either a string (e.g. "id ASC, name DESC") or an array (e.g. |
return | $this |
The query object itself |
Please login to continue.