how to create mysql user with root privileges 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: create mysql user with privileges
GRANT type_of_permission ON database_name.table_name TO ‘username’@'localhost’;