Database Results Help

R

Rob

Is there a way to have the results show up last to first instead of first to
last?

Is there a way to have the results show up in alphabetical order?

Thanks
 
D

David Berry

In your SQL query you can add an ORDER BY clause. After the field you can
use DESC for descending order, ASC for ascending order. For example,

SELECT * FROM Table ORDER BY LastName DESC
 
Top