Register now and start sharing your code snippets.
-->

Creating a MySQL user with just enough privileges

SQL posted 5 months ago by christian

   1  GRANT DELETE,INSERT,SELECT,UPDATE ON charlie_production.* TO 'munger'@'localhost' IDENTIFIED BY 'xxx';

Tagged sql, syntax, grant, mysql, privileges