When I write the following query:
SELECT id,status
FROM dbo.View_Request
PIVOT ( COUNT(id) FOR status IN([CL],[HOLD])) AS pvt
I get a vague error message:
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near '('.
What exactly am I doing wrong?