232k views
1 vote
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;

User Rhelminen
by
7.9k points

1 Answer

0 votes
Thx abuzz antes amex abuzz
User CharlyDelta
by
8.5k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.