SELECT CategoryID,ProductName,UnitPriceFROM ProductsWHERE CategoryID = 1 OR CategoryID =2 AND UnitPrice < 15
When you run the query above you would expect that all the records retrieved will have a unit price of less than $15 dollar but that is not the case. Below is the result from the query.