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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top