Direction: Choose the correct option
Q1.
CREATE USER 'app_user'@'localhost' IDENTIFIED BY 'password';What does this do?Direction: Choose the correct option
Q2.
GRANT SELECT ON company.employees TO 'app_user'@'localhost';What permission is granted?Direction: Choose the correct option
Q3.
GRANT INSERT, UPDATE ON company.* TO 'app_user'@'localhost';What does company.* mean?Direction: Choose the correct option
Q4.
REVOKE DELETE ON company.employees FROM 'app_user'@'localhost';What does REVOKE do?Direction: Choose the correct option
Q5.
How do you see a user's permissions?
