mysql create user with mysql native password

Solutions on MaxInterview for mysql create user with mysql native password by the best coders in the world

showing results for - "mysql create user with mysql native password"
Lorna
01 Jul 2020
1CREATE USER 'user'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
2GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost';
3FLUSH PRIVILEGES;