I want to give a user access to only a few tables. I execute this query:
GRANT SELECT (credits_features_csgo, steam_code, credits_csgo, userid,
credits_forum, credits_features_tf2, credits_tf2, credits_css, credits_features),
INSERT (credits_features_csgo, steam_code, credits_csgo, userid, credits_forum,
credits_features_tf2, credits_tf2, credits_css, credits_features),
UPDATE (credits_features_csgo, steam_code, credits_csgo, userid, credits_forum,
credits_features_tf2, credits_tf2, credits_css, credits_features),
CREATE,
REFERENCES (credits_features_csgo, steam_code, credits_csgo, userid, credits_forum,
credits_features_tf2, credits_css, credits_features),
ALTER
ON `bob_forum`.`vb_user`
TO 'bob_store'@'localhost';
It executes successfully, but when I go to check the user's privileges, it only shows it being granted usage. What would be causing this issue?