linux mysql how to add user to modify or add records in a table code example
Example 1: create user mysql
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
Example 2: how to create new database user
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';