Append a data frame, Andromeda table, or result of a query on an Andromeda
table to an existing
Andromeda
table.
If data from another Andromeda
is appended, a batch-wise copy process is used, which will be slower
than when appending data from within the same Andromeda
object.
Important: columns are appended based on column name, not on column order. The column names should therefore be identical (but not necessarily in the same order).
appendToTable(tbl, data)
An Andromeda
table. This must be a base table (i.e. it cannot be a query result).
The data to append. This can be either a data.frame or another Andromeda table.
Returns no value. Executed for the side-effect of appending the data to the table.