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
You can make a single MyISAM table read only by compressing the table. Use myisampack on the command line to pack the table.
myisampack
More info can be found in the MySQL Manual: http://dev.mysql.com/doc/refman/5.0/en/myisampack.html