Answers for "revoke all privileges from a user in mysql database;"

SQL
10

mysql deltete user

DROP USER 'jeffrey'@'localhost';
Posted by: Guest on April-18-2020
2

grant revoke privileges to mysql username

#in SQL execute
#GRANT type_of_permission ON database_name.table_name TO 'username'@'localhost';
GRANT ALL PRIVILEGES ON * . * TO 'username'@'localhost';
#reload all the privileges
FLUSH PRIVILEGES;

#Show Privileges
SHOW GRANTS FOR 'username'@'localhost';

#Revoke Privileges
REVOKE type_of_permission ON database_name.table_name FROM 'username'@'localhost';
Posted by: Guest on November-03-2020

Code answers related to "revoke all privileges from a user in mysql database;"

Code answers related to "SQL"

Browse Popular Code Answers by Language