DCL (Data Control Language): Data control language, used to define database access rights and security levels, and to create users. 1. Manage Users 1. Create a user -- Create a user CREATE USER 'username'@'hostname' IDENTIFIED BY 'password'; CREATE USER 'Summerday'@'localhost' IDENTIFIED BY '123456'; ps: If 2. Modify user -- Change password SET PASSWORD FOR 'user name'@'host name' = PASSWORD('new password'); SET PASSWORD FOR 'Summerday'@'localhost' = PASSWORD('hyh123'); 3. Query users -- 1. Switch to mysql database USE mysql; -- 2. Query the user table SELECT * FROM USER; The % wildcard matches everything. 4. Delete User -- Delete user DROP USER 'username'@'hostname'; DROP USER 'Summerday'@'localhost'; 2. Permission Management 1. Query permissions -- Query permissions SHOW GRANTS FOR 'user name'@'host name'; SHOW GRANTS FOR 'Summerday'@'localhost'; 2. Grant permissions -- Grant permissions GRANT permission list ON database name. table name TO 'user name'@'host name'; GRANT SELECT ON mydb2.account TO 'Summerday'@'localhost'; -- Grant all permissions GRANT ALL ON *.* TO 'Summerday'@'localhost'; 3. Revoke permissions -- Revoke permissions REVOKE permission list ON database name. table name FROM 'user name'@'host name'; REVOKE SELECT ON mydb2.account TO 'Summerday'@'localhost'; -- Revoke all permissions REVOKE ALL ON *.* FROM 'Summerday'@'localhost';
The above is the details of how MySQL uses DCL to manage users and control permissions. For more information about MySQL management users and control permissions, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to install mysql in docker
>>: An article to help you learn more about JavaScript arrays
This article example shares the specific code of ...
Table of contents Preface Basic Introduction Code...
MySql always pops up a MySQLInstallerConsole.exe ...
I haven’t updated my blog for several days. I jus...
Table of contents Preface Instruction Basics Hook...
MySQL multi-table query Add a worksheet -- User t...
The ECS cloud server created by the historical Li...
First, the principle of esp8266 publishes message...
This article shares the specific code of uniapp t...
Table of contents Scenario Requirements glibc ver...
1. Built-in functions 1. Mathematical functions r...
Table of contents Tutorial Series 1. Introduction...
The default number of remote desktop connections ...
Table of contents Preface analyze Initial Renderi...
Using c3p0 Import the c3p0jar package <!-- htt...