How to sort data in a table?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm importing 2 tables in my db from elsewhere. When the tables are imported
I'd like to sort on a field called date, however the data resorts itself on
import on another field.

In code, how can I sort a table's data based on a field?

TIA.
 
The order of data in a table is irrelevant. You cannot actually control it.

If the order of the data is important, create a query that sorts the data in
the appropriate way, and use the query wherever you would otherwise have
used the table.
 
Back
Top