Hello expert,
Is there any alternative of negative condition.
e.g:
SELECT name state
FROM country
WHERE NOT (state = 'CA' OR state = 'WA' OR state = 'IL' OR state = 'NY')
Assume here state field have many values that is CS, CD, WE, etc etc
Is there any alternative?