Create a DB user
MySQL
Creates a mySQL user called username with a password of password
Code
CREATE USER 'username'@'%' IDENTIFIED BY 'password';
MySQL
Creates a mySQL user called username with a password of password
Code
CREATE USER 'username'@'%' IDENTIFIED BY 'password';