Jon GS
02-06-02, 17:51
| I have a successful inner join query to select records from one table which have a corresponding record in another table with the same unique id. "select table1.name, table1.ID, table2.address from table1 inner join table2 on table1.ID=table2.ID" How can I select records from table1 whose ID does NOT appear in table2? Any help much appreciated. JGS |