3 lines
87 B
SQL
3 lines
87 B
SQL
SELECT Count(*) FROM users
|
|
WHERE length(username) <= 20
|
|
AND username ~ '^[A-Za-z]+$'; |