The Most Active and Friendliest
Affiliate Marketing Community Online!

“Propeller”/  Direct Affiliate

REVOKE command in PHP?

The REVOKE statement takes away permissions already Granted to users.When a user account is set up in SQL, in order for it to be able to do anything with the database, it must have permissions. These are given through the GRANT statement.
 
Revoke command is used to remove granted privileges given to the user.
Syntax:-
Revoke privileges ON object FROM user_name
Example:-
To revoke the delete privilege on student table:
REVOKE delete ON student FROM XYZ
 
MI
Back