/*6. How to grant a user permission to select only from any host but to a specific table of a database. */ /*Syntax : grant [|] on [database].[|] to [user name]@[||] identified by ["password"]; */ grant select on posts.url_master to jhon@'%' identified by 'mypassword'; flush privileges;