I dont have "explain plan" on hand. Could you help to tell which of the below is more efficient?
Option 1:
select ... 
    from VIEW_ABC 
    where STRING_COL = 'AA' 
       OR STRING_COL = 'BB' 
       OR STRING_COL = 'BB' 
       OR ...
       OR STRING_COL = 'ZZ'
Option 2:
select ... 
    from VIEW_ABC 
    where STRING_COL IN ('AA','BB',...,'ZZ')
 
     
     
     
     
    