I have two Tables in SQL:
Table 1 Table 2
A B C A B C
0 2 3 1 3 5
3 4 5 4 6 7
1 6 8 3 4 5
I want to "merge" them. The result should look like this.
Table Result
A B C
0 2 3
3 4 5
1 6 8
1 3 5
4 6 7
So I just want to take over the rows in Table 2 which are not in Table 1. I dont want the rows in Table 2 which are already in Table 1. As you can see the name of the columns are also the same.