Whats the best way to check if a username exists in a MySQL table?
|
|
read out the first result row - if the 'count' column is > 0 then the username exists. Alternatively, in php, you could use:
Then use mysql_num_rows (or the equivalent). |
||
|
|
If you are trying to determine if a user exists in MySQL (i.e. a user name exists that can login to MySQL itself).
If you need to filter by host:
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. |
||
|
|
|
|
|
||
|
|
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. ;-) |
||
|
|
