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, 3162🔥, 0💬
Popular Posts:
What Are Bitwise Operations in SQL Server Transact-SQL? Bitwise operations are binary operations per...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
What Are the Differences between BINARY and VARBINARY in MySQL? Both BINARY and VARBINARY are both b...