MySQL user privileges
Check privileges
Check privileges for self:
1 | SHOW GRANTS; |
Check privileges user:
1 | SHOW GRANTS FOR 'username'@'host'; |
Example output:
1 | GRANT TRIGGER ON `schema`.* TO `username`@`%` |
https://www.prisma.io/dataguide/mysql/authentication-and-authorization/privilege-management
Grant
Revoke
Recommendations
Recommendations