I have several tables T1, T2 ... TN, each one can have columns in common or not. My final table F contains all the columns (one time only) of the previous ones.
How can I insert of each one without having to explain which columns I'm inserting?
For example, let's say that table T1 has columns A and B. Table F has A, B, C, and D.
I would like something of the type
insert into F select * FROM T1;
or
insert into F select A,B,C,D FROM T1;