->limit() | ->groupBy() |
DB_DataObject | |
PEAR Manual | |
void $DB_DataObject->orderBy (
string $order
)
Adds a order by condition. Calling this without any arguments clears the current order condition.
string $order - Order
This function can not be called statically.
The quote_identifiers configuration option will not affect data sent to orderBy.
Setting the order by
|
Resulting SQL
SELECT * FROM person ORDER BY name, age, eye |
->limit() | ->groupBy() |
DB_DataObject | |
PEAR Manual | |