Open In App

MySQL | RENAME USER

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The RENAME USER statement can be used in MySQL if a MySQL administrator wants to change the username or the host of an existing MySQL user account without altering the user account’s privileges.

Syntax :

RENAME USER 'username'@'host' TO 'new_username'@'host';

Parameters Used:

  1. Username: It is the username of the user account you want to rename.
  2. new_username: It is the new name you want to assign to the user.

Suppose there are 4 users in the MySQL database server as listed below:

Let us now learn about how to rename users using RENAME USER statement:

  1. Renaming a single user using the RENAME USER statement: To rename the user account with the username “gfguser1”, the RENAME USER statement should be executed as follows:

    Syntax:


    Output:
    Table after execution of the rename user statement will be as follows:

  2. Renaming multiple users using the RENAME USER statement: The RENAME USER statement can be used to rename multiple user accounts at once. To rename two user account “gfguser2” and “gfguser1” from the table mentioned above,the RENAME USER statement should be executed as follows:

    Syntax:


    Output:
    Table after execution of the above rename user statement will be as follows:


Last Updated : 03 Mar, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads