Answers for "CREATE GRANT ALL ON portfolio.* TO 'portfolio-admin'@'localhost' IDENTIFIED BY 'One@JBvdW1983';"

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 "CREATE GRANT ALL ON portfolio.* TO 'portfolio-admin'@'localhost' IDENTIFIED BY 'One@JBvdW1983';"

Code answers related to "SQL"

Browse Popular Code Answers by Language