I have two tables that each contain a similar key called domain.
I would like to select all domains from table 1 that are not included in table 2.
In algebraic notation:
t1 := project domain(table1);
t2 := project domain(table2);
project domain( t1 difference t2);
How is this done in mysql?
Looking forward to your replies.
Alex