Hello,
I have a table with ten columns and I need to count each column for the data that equals column specific data. Is it possible to do this in one view? For example
COUNT(q3a) AS countq3a, q3a
FROM dbo.trainingsurveys
WHERE (q3a = N'8 AM to 10 AM')
GROUP BY q3a
That's one view but I would like to q3b, q3c all in the same view. Thank you!
I have a table with ten columns and I need to count each column for the data that equals column specific data. Is it possible to do this in one view? For example
COUNT(q3a) AS countq3a, q3a
FROM dbo.trainingsurveys
WHERE (q3a = N'8 AM to 10 AM')
GROUP BY q3a
That's one view but I would like to q3b, q3c all in the same view. Thank you!