mysql update privileges

Solutions on MaxInterview for mysql update privileges by the best coders in the world

showing results for - "mysql update privileges"
Ryle
01 Feb 2020
1mysql> REVOKE ALL ON example_database.* FROM 'user_name'@'host_name'; 
2mysql> GRANT privilege1, privilege2 ON example_database.* TO 'user_name'@'host_name';