create user with all privileges to specific database mysql code example
Example 1: mysql user permission database
GRANT ALL PRIVILEGES ON `db_name`.* TO 'user'@'host'
Example 2: assign user to database mysql
GRANT type_of_permission ON database_name.table_name TO ‘username’@'localhost’;