create user mysql with all privileges code example

Example 1: mysql add user with all privileges

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;

Example 2: mysql users and privileges list

SELECT * FROM information_schema.user_privileges;
SELECT CONCAT('SHOW GRANTS FOR ''',user,'''@''',host,''';') FROM mysql.user;
SHOW GRANTS FOR 'my_user'@'localhost';

Example 3: create mysql user with privileges

GRANT type_of_permission ON database_name.table_name TO ‘username’@'localhost’;

Tags:

Sql Example