Answers for "grant can't create user in mysql 8"

SQL
0

mysql 8 error on identified by

use mysql;
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL ON *.* TO 'username'@'localhost';
flush privileges;
Posted by: Guest on April-02-2020

Code answers related to "grant can't create user in mysql 8"

Code answers related to "SQL"

Browse Popular Code Answers by Language