For REVOKE statements, the server automatically rereads the grant tables.
A. True
B. False
Answer: Option A
Solution (By Examveda Team)
This question asks about the behavior of the REVOKE statement in MySQL.The REVOKE statement is used to take away privileges that were previously granted to a user or role.
The question is asking if, after a REVOKE statement is executed, MySQL automatically updates its internal tables (called grant tables) that store information about user privileges.
The answer is True.
When you use REVOKE to remove permissions, MySQL immediately updates its grant tables to reflect the changes. This ensures that the database enforces the new permissions accurately.
So, the correct answer is Option A: True.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network
Join The Discussion