create user with database mysql 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 'newuser'@'localhost' IDENTIFIED BY 'password';

Example 4: create mysql user with privileges

GRANT type_of_permission ON database_name.table_name TO ‘username’@'localhost’;

Tags:

Sql Example