MySQL REVOKE to delete user permissions

MySQL REVOKE to delete user permissions

In MySQL, you can use the REVOKE statement to remove certain permissions of a user (the user will not be deleted), which can ensure the security of the system to a certain extent. For example, if the database administrator feels that a user should not have DELETE permission, then the DELETE permission can be removed.

There are two forms of syntax for removing permissions using the REVOKE statement, as follows:

1) The first type

Delete certain specific permissions of the user. The syntax format is as follows:

REVOKE priv_type [(column_list)]...
ON database.table
FROM user [, user]...

The parameters in the REVOKE statement have the same meaning as the parameters in the GRANT statement. in:

  • The priv_type parameter indicates the type of permission;
  • The column_list parameter indicates which columns the permission applies to. If this parameter is not present, the permission applies to the entire table.
  • The user parameter consists of the username and host name in the format of "username'@'hostname'".

2) The second type

Delete all permissions for a specific user. The syntax is as follows:

REVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...

When deleting user permissions, please note the following points:

  • The REVOKE syntax is similar to the GRANT statement syntax, but has the opposite effect.
  • To use the REVOKE statement, you must have the global CREATE USER privilege or the UPDATE privilege for the MySQL database.

Example 1

Use the REVOKE statement to revoke the insert permission of user testUser. The SQL statement and execution process are as follows.

mysql> REVOKE INSERT ON *.*
    -> FROM 'testUser'@'localhost';
Query OK, 0 rows affected (0.01 sec)

mysql> SHOW GRANTS FOR 'testUser'@'localhost';
+-----------------------------------------------------------------+
| Grants for testUser@localhost |
+-----------------------------------------------------------------+
| GRANT SELECT ON *.* TO 'testUser'@'localhost' WITH GRANT OPTION |
+-----------------------------------------------------------------+
1 row in set (0.00 sec)

The result shows that the INSERT permission of the testUser user is deleted successfully.

This is the end of this article about MySQL REVOKE to delete user permissions. For more information about MySQL REVOKE to delete user permissions, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A brief explanation of how to grant and revoke authorization in MySQL

<<:  iframe multi-layer nesting, unlimited nesting, highly adaptive solution

>>:  Detailed process of using Vscode combined with docker for development

Recommend

web.config (IIS) and .htaccess (Apache) configuration

xml <?xml version="1.0" encoding=&qu...

JavaScript Function Currying

Table of contents 1 What is function currying? 2 ...

Interpretation of Vue component registration method

Table of contents Overview 1. Global Registration...

A brief discussion on whether CSS animation will be blocked by JS

The animation part of CSS will be blocked by JS, ...

Detailed explanation of writing and using Makefile under Linux

Table of contents Makefile Makefile naming and ru...

Detailed explanation of Docker daemon security configuration items

Table of contents 1. Test environment 1.1 Install...

Not all pop-ups are rogue. Tips on designing website pop-ups

Pop-up news is common in domestic Internet servic...

JS realizes the effect of picture waterfall flow

This article shares the specific code of JS to re...

Detailed explanation of Vite's new experience

What is Vite? (It’s a new toy on the front end) V...

VMware15 installation of Deepin detailed tutorial (picture and text)

Preface When using the Deepin user interface, it ...

Docker image creation Dockerfile and commit operations

Build the image There are two main ways to build ...

Detailed explanation of CSS elastic box flex-grow, flex-shrink, flex-basis

The functions of the three attributes flex-grow, ...

Example code for implementing dotted border scrolling effect with CSS

We often see a cool effect where the mouse hovers...

MySQL 8.0.17 installation and usage tutorial diagram

Written in front In the past and in the current p...