Answers for "create database and users"

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
1

how to create new database user

GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
Posted by: Guest on July-12-2020

Code answers related to "create database and users"

Code answers related to "SQL"

Browse Popular Code Answers by Language