Assuming you want to replace the entire columns of Table1 with the corresponding columns of Table2, you can do the following:
main.m280 chars7 lines
Note that this will only work if Table1 and Table2 have the same number of columns. If you want to replace only some of the columns, you can use indexing to select the columns you want to replace:
main.m322 chars7 lines
gistlibby LogSnag