I need to give user rights to read a particular DB tables and RW access to one of these.
I made commands such as
GRANT SELECT ON database.* TO 'someuser'@'somehost';
GRANT SELECT,INSERT,UPDATE,DELETE ON database.rwtable TO 'someuser'@'somehost';
But now I (using phpmyadmin) can access the database tables, but all tables, including the one I asked to have insert privileges, is read only.
Please suggest how to assign corret rights, Askar