The below question pertains to MySQL 5.1.44
Let\'s say I have a table with records inserted by different users of my application. How can I give a specific user acce
Besides
GRANT SELECT ON . TO @ IDENTIFIED BY ''
it's better to also do
GRANT SHOW VIEW ON . TO @ IDENTIFIED BY ''
so that a lot of SQL UI tool can get the view definition and work appropriately for the view.