Counting different valuesin one column
Counting different valuesin one column
(OP)
thread526-335324: Counting of differant values in one column
Sorry for the roundabout response Steve but your original thread was closed by the time I came across it.
Will something like this work for you?
Sorry for the roundabout response Steve but your original thread was closed by the time I came across it.
Will something like this work for you?
CODE --> T-SQL
SELECT FirstTimeRejectCode, COUNT(FirstTimeRejectCode) AS RejectCount FROM [AssyLineDB].[aProcess].[tblSerialNumber] WHERE Rework=1 AND DateAdded BETWEEN @StartDate AND @EndDate GROUP BY FirstTimeRejectCode




