Answers for "mysql user set mysql_native_password"

SQL
2

mysql create user with mysql_native_password

CREATE USER 'user'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost';
FLUSH PRIVILEGES;
Posted by: Guest on January-17-2021

Code answers related to "mysql user set mysql_native_password"

Code answers related to "SQL"

Browse Popular Code Answers by Language