I am having a problem with querying two tables!
I have two tables, say table_one and table_two. These two tables have a similar field, say table_one.field and table_two.field.
I wish to select all of the table_two records appart from the ones where table_two.field = table_one.field.
For example if table_one.field held the following records:
item1
item6
item19
and table_two.field held:
item1
item4
item6
item9
item16
item19
I would expect the output of the SQL query to be:
item4
item9
item16
I would be very greatfull if someone could please advise me.
Sam
I have two tables, say table_one and table_two. These two tables have a similar field, say table_one.field and table_two.field.
I wish to select all of the table_two records appart from the ones where table_two.field = table_one.field.
For example if table_one.field held the following records:
item1
item6
item19
and table_two.field held:
item1
item4
item6
item9
item16
item19
I would expect the output of the SQL query to be:
item4
item9
item16
I would be very greatfull if someone could please advise me.
Sam