...
it adds to (Access calls it "appends")
SQL, the universal language of data access (small 'a'), calls it
INSERT INTO.
Access will add the data to the bottom of the table.
That is technically correct, but why get technical? I assume you are
alluding to the fact that MS Jet tables are physically ordered on the
clustered index, which is always the primary key column/field in Jet,
but physical re-ordering doesn't actually occur until the database
file is compacted, so effectively the new rows/records get added to
the 'bottom' of the table.
It is better IMHO to consider tables as sets i.e. without physical
ordering (and no bottoms!), therefore INSERT is a better description.
This is the idea behind SQL i.e. you don't get involved with the
physical implementation on the DBMS, although for performance reasons
it pays to have some regard to certain 'features' e.g. the
aforementioned fact that you get no choice over the clustered index in
Jet so it's worth knowing that the commonly used INDENTITY/autonumber
function makes for a lousy primary key!
--