how do i sort a table in alphabetical order?

  • Thread starter Thread starter Guest
  • Start date Start date
You don't. Tables are "sacks of data": you can't make any assumptions about
the order of entries in them (and the order will likely change when you
compact the database).

Instead, create a query with an appropriate ORDER BY clause in it, and use
that wherever you would otherwise have used the table.
 
Back
Top