Find the clause that will give the same results as: select * from d_cds where cd_id not in(90, 91, 92); mark for review (1) points where cd_id != 90 and cd_id != 91 and cd_id != 92; where cd_id not like (90, 91, 92); where cd_id <=90 and cd_id >=92; where cd_id != 90 or cd_id != 91 or cd_id!= 92;