MySQL - What are the system tables that store user privileges?

What are the system tables that store user privileges?

Following are the system tables:

1. "mysql.user" - Stores privileges granted at the global level.
2. "mysql.db" - Stores privileges granted at the database level.
3. "mysql.table_priv" - Stores privileges granted at the table level.
4. "mysql.columns_priv" - Stores privileges granted at the column level.
5. "mysql.procs_priv" - Stores privileges granted at the routine level.
MySQL features - Explain about MySQL and its features.
MySQL features - MySQL is a relational database management system which is an open source database.....
MySQL disadvantages - What are the disadvantages of MySQL?
MySQL disadvantages - MySQL does not support a very large database size as efficiently...
MySQL security - What are the security recommendations while using MySQL?
MySQL security - Access to the user table should never be given to avoid SQL injection attacks.....
Post your comment