User Creation and Permission Management

Published July 26, 2025 By Sai Sree Ram Gundepudi

Create User

CREATE USER 'report_user'@'localhost' IDENTIFIED BY 'secret';

Grant Permissions

GRANT SELECT ON school.* TO 'report_user'@'localhost';

Was this solution helpful?

Your feedback helps improve our technical knowledge repository.

Share this article