create user and grant privileges 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: how to add privilege in mysql user

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

Tags:

Sql Example