I want to copy the contents of table1 into table2, but it's not a straight copy, as table2 contains more columns than table 1. The structure is similar to this:
Table1 { column2 column4 column6 }
Table2 { column1 column2 column3 column4 column5 column6 }
What I want to do is add every row from table1 to table2, and set default values for the missing columns. Any help would be appreciated.