Answers for "grant access to database new user"

SQL
75

mysql create user

CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost';
FLUSH PRIVILEGES;
Posted by: Guest on May-19-2020
5

create user mysql

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
Posted by: Guest on April-19-2020

Code answers related to "grant access to database new user"

Code answers related to "SQL"

Browse Popular Code Answers by Language