You need to allow user ANDREW to:
1. Modify the TITLE and ADDRESS columns of your CUSTOMERS table.
2. GRANT that permission to other users.
Which statement will do this?
Select an option, then click Submit answer.
-
○
GRANT UPDATE (title, address) ON customers TO andrew WITH GRANT OPTION;
-
○
GRANT UPDATE (title, address) ON customers TO andrew WITH ADMIN OPTION;
-
○
GRANT UPDATE ON customers.title, customers.address TO andrew WITH ADMIN OPTION;
-
○
GRANT UPDATE (title, address) ON customers TO andrew;
-
○
GRANT UPDATE ON customers.title, customers.address TO andrew WITH GRANT OPTION;
-
○
GRANT UPDATE ON customers.title, customers.address TO andrew;

