I have the following question. Can the result of a UNION operation on two tables overwrite the name of 1 table.
So I have
SELECT * FROM table1
UNION
SELECT * FROM table 2
I want this result of the UNION operation to overwrite table1. Is it possible ?
Assuming that table1 and table2 have the same columns: