PDA

View Full Version : script that finds usernames with less than 4 characters


globalinsites
10-07-2003, 02:43 PM
Hi,

I was told that there is a script that can help me finding usernames in vbulletin's database that has less than 4 characters.

Where can I find it?

Regards,

Rik.

Xenon
10-07-2003, 03:21 PM
it's just a db query:

SELECT userid,username
FROM user
WHERE LENGTH(username) < 4