I need to setup a query with multiple where conditions. How do I set that up? So just for examples sake, let's say I need my query to show ID, Name, City, State, Zip where ZIP = 12345 Or 45523 Or 88762
I need to setup a query with multiple where conditions. How do I set that up? So just for examples sake, let's say I need my query to show ID, Name, City, State, Zip where ZIP = 12345 Or 45523 Or 88762
SELECT ID, Name, City, State, Zip
FROM tblTest
WHERE ((zip) = 12345 or (zip) = 45523 or (zip) = 88762)