Updating original recordset from reordered SQL version?

O

ormazd

I need to perform a series of updates on an Access tables, after reordering
the records by a descending field each time. I'm having trouble getting my
head around figuring out how to update the original recordset from the
reordered version. Could someone point me in the right direction for coding
this?
TIA!
 
J

John W. Vinson

I need to perform a series of updates on an Access tables, after reordering
the records by a descending field each time. I'm having trouble getting my
head around figuring out how to update the original recordset from the
reordered version. Could someone point me in the right direction for coding
this?
TIA!

The order of records is completely irrelevant to a Table. Are you assuming
that you can store the order of records in a Table? If so you can't! A table
is an unordered "bag" of records, and an update query doesn't care what order
the records are in, just the key fields' values.

Could you explain the nature of the data, what you're trying to accomplish,
and perhaps some of your current code?
 

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

Top