Answers for "mysql create database connection, create user and give user all rights"

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 database connection, create user and give user all rights"

Code answers related to "SQL"

Browse Popular Code Answers by Language