 |
mysql - update command is denied for user - Stack Overflow
Your user doesn't have the right permissions. You need to give it access to the UPDATE command, like so: GRANT UPDATE ON database.* TO test@'localhost' IDENTIFIED BY 'password'; If you are using a graphical tool to manage the database - e.g ...
stackoverflow.com |
 |