I have two tables in my database, lets call them TableA and TableB. What I want to do is excute a query that adds the rows that doesn't exist in both TableA and TableB into TableA. For example:
Before Query:
TableA
1 George
2 Mark
3 Patrick
4 Martin
TableB
1 George
2 Steve
3 Mike
After Query:
TableA
1 George
2 Mark
3 Patrick
4 Martin
5 Steve
6 Mike
Anyone?
Before Query:
TableA
1 George
2 Mark
3 Patrick
4 Martin
TableB
1 George
2 Steve
3 Mike
After Query:
TableA
1 George
2 Mark
3 Patrick
4 Martin
5 Steve
6 Mike
Anyone?
