In my users
table I need to calculate count of users by username length.
For example:
- 200 users has name 1 char length
- 500 users has name 2 chars length
- 1500 users has name 3 chars length
- ...
I created MSSQL query:
SELECT
TOP 1000
LEN(nick) as 'title',
Count(*)
FROM [userstable]
WITH(NOLOCK)
GROUP BY title
After I run it I see next problem:
column 'userstable.Nick' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Could someone explain why?