Answers for "create user in mysql and grant one database"

SQL
13

mysql add user with all privileges

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

create user mysql

CREATE USER 'norris'@'localhost' IDENTIFIED BY 'password';
Posted by: Guest on March-07-2020

Code answers related to "create user in mysql and grant one database"

Code answers related to "SQL"

Browse Popular Code Answers by Language