This works:SELECT DISTINCT PartNumberFROM Table1WHERE (TestData IN ("PASSED AT POINT1", "PASSED AT POINT2", "ACCEPTED BY BILL", "ACCEPTED BY MARK") )
What I'd like to get is something like the following:SELECT DISTINCT PartNumberFROM Table1WHERE (TestData Like ("PASSED%", "ACCEPTED%") )
Obviously, there are many more TestData parameters to include or I could just replace it withWHERE (TestData Like "PASSED%") OR (TestData Like "ACCEPTED%")
Is there a way to do this?
Avoid Sears Home Improvement