Assuming PUBLIC has been granted all privileges on table T1, which of the following statements
would continue to permit any user to add rows to table T1, but not remove them?

A.
REVOKE DROP ON t1 FROM PUBLIC
B.
REVOKE UPDATE ON t1 FROM PUBLIC
C.
REVOKE DELETE ON t1 FROM PUBLIC
D.
REVOKE CONTROL ON t1 FROM PUBLIC
DELETE
Revokes the privilege to delete rows from the table, updatable view, or nickname.
0
0