初学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
请问这是什么原因 展开
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
请问这是什么原因 展开
2个回答
展开全部
试试下面这个:
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';
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';
展开全部
英文已经很清楚了。
在靠近: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语句的。
在靠近: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语句的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询