Here is the first portion of my query which works fine:
SELECT ManufacturerPartNumber, ProductFamily FROM Products WHERE ManufacturerPartNumber = Request.Form("ManufacturerPartNumber")
However, I need to add an OR operator to include additional ManufacturerPartNumbers that share a common ProductFamily as the ManufacturerPartNumber that matches exactly to the Request.Form
>How do I complete the query to accomplish this?
SELECT ManufacturerPartNumber, ProductFamily FROM Products WHERE ManufacturerPartNumber = Request.Form("ManufacturerPartNumber")
However, I need to add an OR operator to include additional ManufacturerPartNumbers that share a common ProductFamily as the ManufacturerPartNumber that matches exactly to the Request.Form
>How do I complete the query to accomplish this?