I've two tables that are defined exactly the same but have different number of rows. There are five fields that are partial keys of the tables(which is the primary key for both the tables). I wanted to find the rows that are in one table but no the other. I tried using the exists as follows but didn't work.
select * from table1 where not exists (select * from table2)
These tables have the exact same create statement but have difference in the number of rows. I don't know if it is possible to find the difference by using joins. Thanks!