How Do I Grant Multiple Privileges in Mysql

In this syntax: First, specify one or more privileges after the GRANT keyword. If you grant multiple privileges, you need to separate privileges by commas. Second, specify the privilege_level that determines the level to which the privileges apply.

How do I grant all privileges in MySQL?

To GRANT ALL privileges to a user , allowing that user full control over a specific database , use the following syntax: mysql> GRANT ALL PRIVILEGES ON database_name. * TO ‘username’@’localhost’;

How do I grant all privileges to a user in MySQL 8?

  1. grant privileges. mysql> GRANT ALL PRIVILEGES ON . TO ‘root’@’%’WITH GRANT OPTION; mysql> FLUSH PRIVILEGES.
  2. check user table: mysql> use mysql. mysql> select host,user from user.
  3. Modify the configuration file.
James H. Sterling

James H. Sterling

Environmental Science & Climate Journalist

James Sterling reports on renewable energy developments, climate policy, ecological conservation, and green tech innovations around the globe.

Share this article
Twitter Facebook Pinterest