Maison> base de données> tutoriel mysql> le corps du texte

mysql怎样修改用户

WBOY
Libérer: 2022-01-20 14:39:07
original
6572 Les gens l'ont consulté

方法:1、利用“RENAME USER”语句修改用户名,语法为“RENAME USER 旧用户名 TO 新用户名”;2、利用“SET PASSWORD”语句修改用户密码,语法为“SET PASSWORD=PASSWORD(新用户密码)”。

mysql怎样修改用户

本教程操作环境:windows10系统、mysql8.0.22版本、Dell G3电脑。

mysql怎样修改用户

修改用户账号

可以使用 RENAME USER 语句修改一个或多个已经存在的 MySQL 用户账号。

语法格式:

RENAME USER <旧用户> TO <新用户>
Copier après la connexion

语法说明如下:

<旧用户> :系统中已经存在的 MySQL 用户账号。

<新用户> :新的 MySQL 用户账号。

  • 使用 RENAME USER 语句时应该注意以下几点:

  • RENAME USER 语句用于对原有的 MySQL 账户进行重命名。

  • 若系统中旧账户不存在或者新账户已存在,则该语句执行时会出现错误。

要使用 RENAME USER 语句,必须拥有 MySQL 中的 MySQL 数据库的 UPDATE 权限或全局 CREATE USER 权限。

使用 RENAME USER 语句将用户名 james 修改为 jack,主机是 localhost。输入的 SQL 语句和执行过程如下所示。

mysql> RENAME USER james@'localhost' -> TO jack@'localhost'; Query OK, 0 rows affected (0.03 sec)
Copier après la connexion

在 Windows 命令行工具中,使用 jack 和密码 tiger 登录数据库服务器,如下所示。

C:\Users\USER>mysql -h localhost -u jack -p Enter password: ***** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 5.7.20-log MySQL Community Server (GPL) Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
Copier après la connexion

可以使用 SET PASSWORD 语句修改一个用户的登录密码。

【test_user_new2】是新密码

set password=password('test_user_new2');
Copier après la connexion

20.png

21.png

推荐学习:mysql视频教程

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!