mysql grant all privileges to a user
mysql grant all privileges to a user The GRANT statement is used to assign full control over a specific database by providing all privileges. Use the below syntax to assign privilege to the user. GRANT ALL PRIVILEGES ON mydb.* TO ‘myuser’@’%’ WITH GRANT OPTION; /* I hope the above syntax will help you. */ mysql […]
