Category: User Management
-
Change MySQL User Password
MySQL user is a record that contains the login information, account privileges, and the host information for MySQL account to access and manage the database. The login information includes the user name and password. In some cases, there is a need to change the user password in the MySQL database. To change the password of…
-
MySQL Drop User
The MySQL Drop User statement allows us to remove one or more user accounts and their privileges from the database server. If the account does not exist in the database server, it gives an error. If you want to use the Drop User statement, it is required to have a global privilege of Create User statement or the DELETE privilege for the MySQL…
-
MySQL Create User
The MySQL user is a record in the USER table of the MySQL server that contains the login information, account privileges, and the host information for MySQL account. It is essential to create a user in MySQL for accessing and managing the databases. The MySQL Create User statement allows us to create a new user account in…