I'm trying to count the number of comments made by a specific user.
EG
SELECT COUNT(UserID) AS CommentNumber
FROM UserComments
Presently of course all I get is the total number of comments and not the number of comments made by each user. The UserID starts from 1 and rises.
tia
Struth
EG
SELECT COUNT(UserID) AS CommentNumber
FROM UserComments
Presently of course all I get is the total number of comments and not the number of comments made by each user. The UserID starts from 1 and rises.
tia
Struth