No, there's no value you can set to indicated whether or not a row is active.
However, you could add a bit field to your table called "Active" and set it to 1 if the product is in the inventory or 0 if the product isn't, then in your query to return the products add "WHERE Active = 1".