You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by 'lpwd', zhang@localhost identified by 'zpwd'' at line 3
时间: 2023-06-29 18:19:47 浏览: 92
一步一步学 Linq to sql
这个错误提示表明在 SQL 语句中存在语法错误。具体来说,可能是因为在给用户授权时,缺少了关键字 "PASSWORD",正确的 SQL 语句应该是:
```
grant select,update on student to liu@localhost identified by 'lpwd', zhang@localhost identified by 'zpwd';
```
请注意,这个语句仅仅是授权用户对 student 表进行 SELECT 和 UPDATE 操作,并不涉及其它的权限。如果需要授予更多的权限,可以在语句中添加相应的关键字和操作。另外,需要确保当前用户具备执行该语句的权限。
阅读全文