Answers for "create user for all hosts mysql"

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
2

create mysql user on all hosts

CREATE USER 'newuser'@'%' IDENTIFIED BY 'user_password';
GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'%';
SHOW GRANTS FOR 'newuser'@'%';
FLUSH PRIVILEGES;
Posted by: Guest on May-14-2021
5

create user mysql

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
Posted by: Guest on April-19-2020

Code answers related to "create user for all hosts mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language