Add User To Mysql Database Code Example


Example 1: mysql create user

CREATE USER 'user'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost'; FLUSH PRIVILEGES;

Example 2: mysql add user with all privileges

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost'; FLUSH PRIVILEGES;

Example 3: create user mysql

CREATE USER 'norris'@'localhost' IDENTIFIED BY 'password';

Example 4: mysql create user

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; #grant permissions to a specic database and/or table  GRANT ALL PRIVILEGES ON database.table TO 'newuser'@'localhost'; #Or grant wildcar permission to any DB/table GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'localhost';

Example 5: create user mysql

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';

Example 6: mysql create a user

CREATE USER 'someusername'@'localhost' IDENTIFIED BY 'password'

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?