fields to sort the result. By default, records are sorted in ascending order. To sort
in descending order, use the keyword desc after the order by field. The following
example shows how to use the order by clause in descending order .
1 2 3 4 5 6 7 | CustTable custTable; while select custTable order by AccountNum desc { print custTable.AccountNum, " ", custTable.currency; } pause; |
Best Regards,
Hossein Karimi
No comments:
Post a Comment