对 mysql 的有限授予权限



如何在MySQL(不是root)中创建特权用户,其唯一目的是创建其他用户?

但是,此用户一次只能授予对一个数据库的访问权限。

是否可以向用户授予有限的 GRANT 权限?

    yes you can create mysql user and  grant limited permissions using phpmyadmin    
     interface and also by command 
    use following command for creating user and grant permissions

        CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass';
      GRANT SELECT ON database.* TO 'user'@'localhost';

您可以进一步探索

http://dev.mysql.com/doc/refman/5.1/en/adding-users.htmlhttp://dev.mysql.com/doc/refman/5.1/en/grant.html

相关内容

  • 没有找到相关文章

最新更新