Hello Experts,
I have following tables:
Table_1:
C_ID Inst_No Paid_Dt
201 2 12/06/2010
202 2 13/06/2010
203 3 12/06/2010
202 3 16/06/2010
Table_2:
C_ID Inst_No Today_Dt
201 2 12/06/2010
202 2 12/06/2010
203 3 12/06/2010
202 3 16/06/2010
Now, from the above two tables I want to display only the records where Paid_Dt and Today_Dt are not equal.
Like the Result should be
202 2 12/06/2010
I tried it by inner join and <> (Not Equal operator) but, it shows all data instead of a particular.