Answers for "mysql root user"

SQL
3

alter user root mysql

ALTER USER 'root'@'localhost' IDENTIFIED BY 'newPassword';
Posted by: Guest on October-22-2020
0

mysql create usaer

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
Posted by: Guest on September-30-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language