Table ALPHA: Column_1 Table OMEGA: Column_1
A A
B B
C C
D
I simply want to have as a result the differences between the 2 tables in Column_1, that is D.
What i do (in SQL View)...
SELECT [ALPHA].Column_1
FROM ALPHA INNER JOIN OMEGA ON [ALPHA].Column_1=[OMEGA].Column_1;
WHERE [...WHAT???...]
I 've tried right join, a "not equal" expression, wrongly I guess.
Any help, please?
A A
B B
C C
D
I simply want to have as a result the differences between the 2 tables in Column_1, that is D.
What i do (in SQL View)...
SELECT [ALPHA].Column_1
FROM ALPHA INNER JOIN OMEGA ON [ALPHA].Column_1=[OMEGA].Column_1;
WHERE [...WHAT???...]
I 've tried right join, a "not equal" expression, wrongly I guess.
Any help, please?