You can remove users and databases in MySQL eg. via phpMyAdmin or from Command Line Client as shown here.
mysql> DROP USER myuser@localhost; [Enter]
mysql> DROP DATABASE mydatabase; [Enter]
Done :)
Web development and technologies | egeek
ASP.NET, C#, Azure, SQL, Server, Umbraco, Sitecore, Git and other stuff I find useful
You can remove users and databases in MySQL eg. via phpMyAdmin or from Command Line Client as shown here.
mysql> DROP USER myuser@localhost; [Enter]
mysql> DROP DATABASE mydatabase; [Enter]
Done :)