I have two table: table1
, table2
. I need to mix them and then create
a new table.
Here is my example:
// table1:
+------+------+
| col1 | col2 |
+------|------+
| 111 | 222 |
| 333 | 444 |
+------+------+
// table2:
+------+------+
| col1 | col2 |
+------|------+
| 555 | 666 |
| 777 | 888 |
+------+------+
So, I need something like this:
// new_table:
+------+------+
| col1 | col2 |
+------|------+
| 111 | 222 |
| 333 | 444 |
| 555 | 666 |
| 777 | 888 |
+------+------+
How can I do that ?