Topic: MySQL user privileges
Hi, it's me again, trying to get my head around MySQL, with great help of you all, of course :)
I've created MySQL user in PHPMyAdmin and I want to grant him ALL privileges (including creating new databases) EXCEPT modifying and reading one special database.
In other words, smth like that:
GRANT ALL PRIVILEGES ON * . * !exceptionDB TO 'user'@ 'localhost' WITH GRANT OPTION ...;
Please, help me with right syntax.