how do i sort a table in alphabetical order?

  • Thread starter Douglas J. Steele
  • Start date
D

Douglas J. Steele

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.
 
Top