Does it really matter if I use one of the following conditions in a WHERE :
WHERE [Process Code] = 1 AND ([Material ID] = 'PLT' OR [Material ID] = 'BMI') --or WHERE [Process Code] = 1 AND [Material ID] IN ('PLT', 'BMI')
Will there be a time that I would use instead of another?
source share