Assume table = tbl1 with one text field = str1 and table = tbl2 with one text field = str2. I would like to include in tbl1 all tbl2.str2, where tbl2.str2 value is not present in tbl1.str1.
For example if tbl1.str1 has values 5,6 and 7 and tbl2.str2 has values 7,8 and 9, then tbl1 should end up with values 5,6,7,8,9.
Is there a single query statement that can perform this task
Thanks,
John
For example if tbl1.str1 has values 5,6 and 7 and tbl2.str2 has values 7,8 and 9, then tbl1 should end up with values 5,6,7,8,9.
Is there a single query statement that can perform this task
Thanks,
John