I want to grant all privileges to a user.
For this I do:
GRANT ALL PRIVILEGES TO 'carl'@'%';
Now, I want to revoke the privileges for a specified table from user carl. Does I have now to revoke the ALL PRIVILEGES and GRANT each table seperatly or is there another way to grant ALL PRIVILEGES and REVOKE the special one?
Thanks for your Help.
Thomas