Mysql Create User With Mysql Native Password

[Solved] Mysql Create User With Mysql Native Password | Sql - Code Explorer | yomemimo.com
Question : mysql create user with mysql_native_password

Answered by : ahmed-ali

CREATE USER 'user'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost';
FLUSH PRIVILEGES;

Source : | Last Update : Sun, 24 Jan 21

Answers related to mysql create user with mysql native password

Code Explorer Popular Question For Sql