How to Revoke Privileges from a MySQL User
This guide explains how to revoke privileges from a MySQL user. The syntax for it would be as follows: REVOKE privilege_type [(column_list)] [, priv_type [(column_list)]]… ON [object_type] privilege_level FROM user [, user]… An explanation of the above outlined syntax is given below: First of all, specify the list of privileges that you want to …