Collections:
User Privilege Tables in MySQL
Where Are User Privileges Stored on the Server in MySQL?
✍: FYIcenter.com
MySQL server has a system database, which hosts a number of system tables to system related information like user privileges. Depending on the scope levels, granted user privileges are stored in different tables:
The following tutorial exercise shows you an example of granted privileges at the table level:
>cd \mysql\bin
>mysql -u root -pretneciyf
mysql> SELECT db, user, create_priv, select_priv
-> FROM mysql.db;
+---------+-------+-------------+-------------+
| db | user | create_priv | select_priv |
+---------+-------+-------------+-------------+
| test | | Y | Y |
| test\_% | | Y | Y |
| fyi | guest | N | Y |
| faq | qa | Y | N |
+---------+-------+-------------+-------------+
4 rows in set (0.00 sec)
⇒ Server Daemon mysqld Administration in MySQL
⇐ Giving User Read-only Access in MySQL
2017-12-09, 2761🔥, 0💬
Popular Posts:
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
Where to find answers to frequently asked questions on Conditional Statements and Loops in SQL Serve...