Hi,
We just purchased DBFcommander PRO, and I'm trying to create a documentation with equivalent FOXPRO commands. A common use case is to append a table into another table, but the structure of these not always match (column count / names).
The standard FoxPro behavior is:
All rows from TABLE2 are appended to TABLE1;
Columns from TABLE2 that do not exist in TABLE1 are ignored (structure from TABLE1 is kept);
Rows are filled per column, and the order of these do not matter (they're always placed in the correct column).
I've been trying to replicate this with the INSERT and SELECT UNION, but these require matching table structures:
INSERT INTO table1 SELECT * FROM table2
SELECT * FROM table1 UNION ALL SELECT * FROM table2
Is there any way of reproducing the mentioned behavior in DBFcommander?
Thanks a lot,