
How to create a new table in database by merging two tables using union function in SQL?

REATE TABLE new_table
SELECT * FROM table1
UNION
SELECT * FROM table2;
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
