vote up 1 vote down star

Whats the best way to check if a username exists in a MySQL table?

flag

73% accept rate

4 Answers

vote up 5 vote down check
SELECT COUNT(*) as count FROM users WHERE username='whatever'

read out the first result row - if the 'count' column is > 0 then the username exists.

Alternatively, in php, you could use:

SELECT * FROM users WHERE username='whatever'

Then use mysql_num_rows (or the equivalent).

link|flag
Or you can just use a select and mysql_num_rows – Peter D May 29 at 16:50
For speed, change the last to : SELECT username FROM users WHERE username='whatever' LIMIT 1 Just in case you don't have a unique constraint or index – Evert May 29 at 22:07
vote up 2 vote down

If you are trying to determine if a user exists in MySQL (i.e. a user name exists that can login to MySQL itself).

select user,host from mysql.user where user = 'username';

If you need to filter by host:

select user,host from mysql.user where user = 'username' and host = 'localhost';

These queries lets you see who has access to the MySQL database server and only is accessible if you are an administrator for a MySQL server.

link|flag
vote up 2 vote down
SELECT 1 FROM `users` WHERE `username` = 'whatever' LIMIT 1
link|flag
Which one is faster? This one or the accepted solution? – despart Aug 10 at 15:58
In a properly indexed and constrained table (unique key on username) they should be functionally identical. Mine will do better on poorly indexed or constrained tables. – chaos Aug 10 at 16:47
vote up 0 vote down

Create a stored procedure to do it. Its faster than running the SQL via your code. I cannot anything more than just comparing it with the saved data in your table. ;-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.