读书人

MySQl 5.0 怎么 grant super 权限给用

发布时间: 2012-03-04 11:13:33 作者: rapoo

MySQl 5.0 如何 grant super 权限给用户呢?

MySQl 5.0 如何 grant super 权限给用户呢? 执行以下总是不行.

mysql> GRANT super ON test.* TO user01@localhost;

ERROR 1221 (HY000): Incorrect usage of DB GRANT and GLOBAL PRIVILEGES



[解决办法]
Hi

grant all provileges on test.* to user01@localhost identified by 'password ';
flush privileges;

from Peter (www.kingofcoder.com编程王站站长)
[解决办法]
楼上正解

读书人网 >Mysql

热点推荐