Answers for "can i create one user or many in mysql"

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 "can i create one user or many in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language