How to remove user from Mysql
To remove a user from Mysql, we can use the following query.
DROP USER 'user'@'host';
Here we need to replace user and host accordingly.
To remove a user from Mysql, we can use the following query.
DROP USER 'user'@'host';
Here we need to replace user and host accordingly.