I was wondering how can I change my query to JOIN one with the same result:
update CDR 
set CDR_TYPE = 'ON_NET' 
where anum in (select subscriber 
               from DEGREE 
               where sub_type = 'MTN')
  and bnum in (select subscriber 
               from DEGREE 
               where sub_type = 'MTN')
FYI: I am using ORACLE database.
Best Regards.
 
     
     
    