Select::Order
Specify the order of the result. Uses the default ordering specified by the server if not explicit. Sintaxe Parameters
$Field - The fields names, separated by a comma. Can be used the keywords "asc" and "desc"; Examples
$consult
=
$Db->Select('users');
$consult->Order('email'); $consult->Run(); //select * from users order by email |
*/