Where mysql stores the password of users -
When we set up a MySQL database system, the system automatically creates a MySQL database that includes db There are several tables, Event, func, host, server, slow_log, user_info etc. By checking the
, I can choose from the user_info
table in user_info by executing a query like user list and their details;
leaving the password
but in which table does MySQL store the password of every user?
MySQL passwords for users are only stored in MySQL; They are stored in mysql.user table. Password PASSWORD ()
function. Is washed by default by using
Comments
Post a Comment