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
Revoke all previous privileges and then grant the specific new privileges:
REVOKE ALL ON db.table FROM user; REVOKE ALL ON db.othertable FROM user; GRANT SELECT ON db.table TO user; GRANT SELECT, INSERT, UPDATE, DELETE ON db.othertable TO user;