Hello everyone,
I have tw0 tables and both have an ID field in them.
Say table 1 contains ID's 1,2,3,4,5,6,7,8,9
and
Table 2 contains ID's 2,3,4,5,6
Now i want to create a new table from these tables which should have an ID field with the ID's which are present in Table 1 and NOT in Table 2.
Such that Table 3 contains the following entries
ID's - 1,7,8,9
each entry should be unique and not repeated in Table 3
In short
Table 3 = Table 1 - Table 2
Any help is appreciated..
Thanks in advance...