create user in mysql and grant usage privileges code example
Example 1: create mysql user with privileges
GRANT type_of_permission ON database_name.table_name TO ‘username’@'localhost’;
Example 2: grant update privilege command in mysql
GRANT UPDATE ON table_name TO 'username'@'localhost';