How can I make a single table in mysql read only for a user while he still has write access to other tables in the same db?
Additional info
- I have root access to the server
- Tables are MyISAM
- Server version is 5.0.51a-24+lenny2
thanks!
How can I make a single table in mysql read only for a user while he still has write access to other tables in the same db?
Additional info
thanks!
GRANT SELECT ON db.table TO user;
GRANT SELECT, INSERT, UPDATE, DELETE ON db.othertable TO user;