Fork of
Username lengths
by MMiller (WMF)
This query is marked as a draft
This query has been published
by Tgr (WMF).
SQL
x
SELECT char_length(CONVERT (user_name USING UTF8MB4)) char_length, count(*) accounts_with_this_length
FROM user
WHERE user_registration >= 20010101000000 and user_registration <= 20310101000000
GROUP BY char_length
ORDER BY accounts_with_this_length DESC;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.