Trying to find all these that are not in warehouse number 3 and unit price less than 100. Whats wrong with my code?
select part_number,
part_description,
Units_on_Hand,
Unit_price,
Warehouse_number
from part
where unit_price >= 100
and not in warehouse_number = 3;