Sorting Options By Order By
Views (218)
If an index does not exist on a table, you can create a temporary index using anorder by clause in the select statement. This lets you specify one or more table
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 .
Best Regards,
Hossein Karimi
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 | CustTable custTable; |
Best Regards,
Hossein Karimi

Like
Report
*This post is locked for comments