M
Mario
I have two tables which are exactly the same in structure
having same fields but one is more updated and hence has
more records than the other. How can I find the matching
and non-matching records between these two tables.
Lets take the following as an example:
TABLE 1:
ID ClientName Age
---------------------------
1 Jeff 21
2 Henry 45
3 Linda 17
4 Scott 70
5 Richard 30
Table 2:
ID ClientName Age
---------------------------
1 Jeff 21
2 Mark 34
3 Henry 45
4 Quetta 89
5 Linda 17
6 Carlos 87
7 Scott 70
8 Richard 30
What will be my sql querry to find the matching and non-
matching records between the two tables.
Thanks
Mario
having same fields but one is more updated and hence has
more records than the other. How can I find the matching
and non-matching records between these two tables.
Lets take the following as an example:
TABLE 1:
ID ClientName Age
---------------------------
1 Jeff 21
2 Henry 45
3 Linda 17
4 Scott 70
5 Richard 30
Table 2:
ID ClientName Age
---------------------------
1 Jeff 21
2 Mark 34
3 Henry 45
4 Quetta 89
5 Linda 17
6 Carlos 87
7 Scott 70
8 Richard 30
What will be my sql querry to find the matching and non-
matching records between the two tables.
Thanks
Mario