Andre MATOS <[EMAIL PROTECTED]> wrote:
> 
> Is it possible to GRANT an USER to just UPDATE one specific FIELD instead 
> of the entire TABLE? 

Yes, you can grant UPDATE privilege on the certain column:
        http://www.mysql.com/doc/en/GRANT.html

For example:
        GRANT UPDATE(column1) ON db_name.table_name TO 'user'@'host_name' IDENTIFIED 
BY 'user_password';

> Is it also possible to create a GROUP with all GRANTs and then create the 
> USERs linked with a specific GROUP?

No, MySQL doesn't support privileges per group.



-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Egor Egorov
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to