how to create user in mysql shell code example
Example 1: create user mysql
CREATE USER 'norris'@'localhost' IDENTIFIED BY 'password';
Example 2: 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';