i need all the data that in table1 + all the data that in table2
Except what in table2 that As it in table1
I do not know how to explain... so I will detail what i need using tables....
sample 1 ----------
Table1
=====
Name | Age
========
M | 1
M | 2
M | 1
Table2
=====
Name | Age
========
M | 1
M | 1
M | 1
Result
====
Name | Age
========
M | 1
M | 2
M | 1
sample2 ---------
Table1
=====
Name | Age
========
M | 1
M | 2
M | 1
Table2
=====
Name | Age
========
M | 1
M | 3
M | 2
Result
====
Name | Age
========
M | 1
M | 1
M | 2
M | 3
thanks