Answers for "mysql create user grant all"

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

Code answers related to "mysql create user grant all"

Code answers related to "SQL"

Browse Popular Code Answers by Language