Link to home
Start Free TrialLog in
Avatar of z018196
z018196

asked on

SELECT query: do not include

What do I enter in Access to exclude data.  For example, if my data field includes A - Z, but I want to exclude E, M, and Y
ASKER CERTIFIED SOLUTION
Avatar of mbizup
mbizup
Flag of Kazakhstan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
select * from urTable
where urColumn not in ('E', 'M', 'Y' )