ArticleNumber Company Storage
01-01227 12 2
01-01227 2 1 'filtered by company/storage in combination
01-01227 5 1
01-01227 12 1 'filtered by company/storage in combination
01-44444 5 4 'filtered by not match the articlenumber
I want to filter so rows containing (company=12 and storage=1) and (company=2 and storage=1) will be filtered out of the resultset and also filter on articlenr.
This is what I come up with, but sure there must be an easier way to make that query?
SELECT * FROM MyTable
where
(Company=2 and Storage<>1 and ArticleNumber='01-01227')
or
(Company=12 and Storage<>1 and ArticleNumber='01-01227')
or
(Company<>2 and Company<>12 and ArticleNumber='01-01227')
The result I'm after:
ArticleNumber Company Storage
01-01227 12 2
01-01227 5 1
filter outcompany=5 and storage=1 and you are returning in the query... – Mosty Mostacho Feb 29 '12 at 14:33