How many comments do I have for each score.
Q&A for users and developers of the Cardano cryptocurrency ecosystem
DECLARE @UserId int = ##UserId## SELECT Count(*) AS CommentCount, Score FROM Comments WHERE UserId = @UserId GROUP BY Score ORDER BY Score DESC