G
Guest
Table #1 has fields A, B, & C (among others). C is a quantity.
Table #2 also has fields A, B, & C (and others that do not exist in Table #1).
I want to sum C for each AB combination, regardles of whether it is in
Table1, Table2, or both. SELECT DISTINCT AB in Table1 or Table2 is easy using
a regular join, as is SELECT DISTINCT AB in Table2 that is not in Table1,
using an unequal join.
How, though, can I get SELECT DISTINCT AB from Table1 OR Table@? I am trying
to avoid using appends because of the pitfalls/complexities of using
temporary appends in this multiuser environment.
Table #2 also has fields A, B, & C (and others that do not exist in Table #1).
I want to sum C for each AB combination, regardles of whether it is in
Table1, Table2, or both. SELECT DISTINCT AB in Table1 or Table2 is easy using
a regular join, as is SELECT DISTINCT AB in Table2 that is not in Table1,
using an unequal join.
How, though, can I get SELECT DISTINCT AB from Table1 OR Table@? I am trying
to avoid using appends because of the pitfalls/complexities of using
temporary appends in this multiuser environment.