mysql create usaer

Solutions on MaxInterview for mysql create usaer by the best coders in the world

showing results for - "mysql create usaer"
Alberto
14 Sep 2018
1CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
2GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';