I have written query, I wanted to know the effect of usage of IN clause in Query.
Query I Select * from khatapayment_track Where Property_ID IN (Select Property_id from khata_header where DIV_ID=2)
Query II Select * from khatapayment_track KPT, khata_header KH Where kh.Property_id=KPT.Property_id and KH.DIV_Id=2
I would like to know 1) which one is faster 2) Any effects of using IN clause, is it advisable to use if a query has a 3 IN clause.
Can you please help me with examples