by "in" you mean that prodCut is either x or y -- is that right? And when you say have 100 employees, do you mean exactly 100 or 100 or more?
If you mean exactly 100, then you can say:
SELECT client FROM client_table
WHERE num_employees = 100 AND
prodcut = 'X' OR prodCut = 'Y'
and if you mean 100 or more, then you can ask:
SELECT client FROM client_table
WHERE num_employees >= 100 AND
prodcut = 'X' OR prodCut = 'Y'
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.