I have a table that's got some values, and I would like to append another table to this one. The columns in the second table don't entirely match the first.
Please note I am using Q/KDB+ language to achieve this:
For example:
Table 1
Date TypeA TypeB TypeC Aggregate
dt1 A B C ABC
Table 2
Header1 Header2
TypeA X
TypeB Y
TypeC Z
I would like my output to be
Table3
Date TypeA TypeB TypeC Aggregate
dt1 A B C ABC
(null) X Y Z (null)