初学Linux上使用MYSQL,设置数据库时遇到奇怪问题

第一步建立bugs数据库,然后mysql>grantselect,insert,update,delete,index,alter,create,locktables,c... 第一步建立bugs数据库,然后
mysql> grant select , insert , update , delete , index , alter , create , lock tables , create temporary tables , drop , references on bugs.* to bugs@localhost identified by '123456';
ERROR 1064: You have an error in your SQL syntax near ,lock tables , create temporary tables , drop , references on bugs.* to bugs@loca' at line 1
请问这是什么原因
展开
 我来答
i5mg
2009-01-06 · TA获得超过738个赞
知道小有建树答主
回答量:294
采纳率:0%
帮助的人:0
展开全部
试试下面这个:

mysql> grant select,insert,update,delete,index,alter,create,lock tables,create temporary tables,drop,references on bugs.* to bugs@localhost identified by '123456';

你的句子出错,是因为你的标点符号,可能你这个语句是从别的地方拷贝来的,或者是你输入语句的时候打开了中文输入,你的标点符号都是双字节的中文标点符号,MySQL是不认的。

其实,上面这个语句基本上已经给‘bugs’用户赋予了全部权限,你可以用下面这个语句代替:
mysql>grant all privileges on bugs.* to bugs@localhost identified by '123456';
百度网友e288eff
2009-01-06 · TA获得超过533个赞
知道小有建树答主
回答量:835
采纳率:0%
帮助的人:264万
展开全部
英文已经很清楚了。

在靠近:lock tables 的地方,有语法错误。

估计的原因是:你使用的MYSQL表引擎(不支持事务)。

比较简单的解决方法:

1.暂时先改成:
grant select , insert , update , delete , index , alter , create , references on bugs.* to bugs@localhost identified by '123456';

看能否执行。

2.更简单的就是不理,这句话是授权的话,你不执行罢了。不影响你去用其他的SELECT /UPDATE /INSERT语句的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式