Inserting records

S

sak

I'm running Microsoft Access from "Office 2000 Professional" under Windows
xp (home addition). How can I insert records into an already existing
database? I need to insert new records between existing records, not
after the last record. I couldn't find instructions in HELP. Thanks you.
 
D

Douglas J. Steele

Records in tables in relational databases don't have a specific order: think
of the tables as "sacks of data", where the data is inserted wherever it
fits.

If the order is important, use a query with an appropriate ORDER BY clause.
 
Top