MySQL 8.0 Database Administrator — Question 10

Examine this SQL statement:
mysql> GRANT r_read@localhost TO mark WITH ADMIN OPTION;
Which two are true? (Choose two.)

Answer options

Correct answer: C, D

Explanation

The correct answers are C and D. C is correct because the ADMIN OPTION allows Mark to grant the role to other users. D is also correct because with the ADMIN OPTION, Mark can revoke the role from other users. Options A, B, E, and F are incorrect as they either misinterpret the ADMIN OPTION or do not reflect the privileges granted by the role.