MySql sets the specified user database view query permissions

MySql sets the specified user database view query permissions

1. Create a new user:

1. Execute SQL statement to create a new one (recommended):

INSERT INTO `mysql`.`user` (
	`Host`,
	`User`,
	`Password`,
	`ssl_cipher`,
	`x509_issuer`,
	`x509_subject`,
	`authentication_string`
)
VALUES
(
	'%', -- Allow remote access 'zhangsan', -- User name '*6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9', -- Plain text password: 123456
	'',
	'',
	'',
	''
);

select * from user where `user` = 'zhangsan';

2. Use tools to create:

insert image description here
insert image description here

2. Set permissions

1. Configure the database and data table (remember to save):

insert image description here

2. Set [Server Permissions] to revoke all

insert image description here

3. Refresh database permissions:

MariaDB [(none)]> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.000 sec)

4. Configure the connection:

insert image description here

3. Test permissions:

1. Test results show that the databases and tables without permissions have been blocked:

insert image description here

2. Test whether there is deletion permission:

insert image description here

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • SQL query statement to find the number of consecutive login days of a user
  • Detailed explanation of the process of querying user permissions using mysql statements
  • Detailed explanation of the idea of ​​Hive-SQL querying continuously active logged-in users

<<:  Several ways to easily traverse object properties in JS

>>:  Nginx local directory mapping implementation code example

Recommend

css3 animation ball rolling js control animation pause

CSS3 can create animations, which can replace man...

How to set directory whitelist and IP whitelist in nginx

1. Set a directory whitelist: Do not set restrict...

Detailed steps to expand LVM disk in Linux

1. Add a hard disk 2. Check the partition status:...

Solution to MySQL server login error ERROR 1820 (HY000)

Fault site: Log in to the MySQL server and get th...

How to configure multiple projects with the same domain name in Nginx

There are two ways to configure multiple projects...

Solution to the problem of slow docker pull image speed

Currently, Docker has an official mirror for Chin...

Mysql sorting and paging (order by & limit) and existing pitfalls

Sorting query (order by) In e-commerce: We want t...

Textarea tag in HTML

<textarea></textarea> is used to crea...

Three implementation methods of Mysql copy table and grant analysis

How to quickly copy a table First, create a table...