Hi I have 2 tables below:
table1
GroupName PersonName email phone
A Tom tom@ 123
A Jen jen@ 223
B Kim kim@ 232
table2
GroupName PersonName email phone
A Tom NULL 1
A Jen NULL 1
A Ken NULL 1
B Kim NULL 1
B Tai NULL 1
I need to insert all columns of the additional records from table2 into table1. for example, I need Ken and Tai's records from table2 added to table1. it's running on SQL Server 2000 so I cannot use EXCEPT or INTERSECT.