Answers for "add new user mysql installer"

SQL
5

add user mysql

CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'username'@'localhost';
FLUSH PRIVILEGES;
Posted by: Guest on November-16-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language