Database Results Help

  • Thread starter Thread starter Rob
  • Start date Start date
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
 
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
 
Back
Top