orderBy() public abstract method
Sets the ORDER BY part of the query.
See also addOrderBy().
| public abstract $this orderBy ( $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.