MySQL Drop User

The MySQL Drop User Tool allows users to visually drop users for MySQL.

The drop user tool generates the database specific SQL to revoke privileges if necessary and drop users.

Listed below is an example SQL statement generated by the Create User Tool for MySQL

REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'testuser'@'%';
DROP USER 'testuser'@'%';

MySQL Drop User