使用的phpmyadmin,输入
mysql> grant all
->on *
->to fred identified by 'mnb123'
->with grant option;
总是提示表单内缺少值
需要制定数据库:
grant all
on 数据库名.*
to fred identified by 'mnb123'
with grant option;
不太懂呀,麻烦说清楚一点可以吗???谢谢。
写错了,需要指定数据库。就是说你要对哪一个数据库使用你当前用户。
你的语句没有指定是对应哪一个数据库,比如说你现在有一个数据库名叫做test,
那么语句应该是这样的。
grant all
on test.*
to fred identified by 'mnb123'
with grant option;
至于这里面的all,*,with grant option等关键字你应该知道是什么意思吧。
@Wolfe Yu: 不行啊,输入查询语句也是提示表单内缺少值。