当前位置:   article > 正文

SQL 错误 [1064] [42000]: You have an error in your SQL syntax; check the manual that corresponds to yo_error 1064 (42000): you have an error in your sql

error 1064 (42000): you have an error in your sql syntax; check the manual t

在为用户指定数据的时候,报错了,SQL 错误 [1064] [42000]: You have an error in your SQL syntax; check the manual that corresponds to yo

GRANT ALL PRIVILEGES ON jeecg-boot.* TO 'jeecgoot'@'%';
ERROR 1064 (42000): 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 '-boot' at line 1

原因
出现这个错误是因为数据库名称 jeecg-boot 包含了不允许的字符(如连字符-)。根据 MySQL 文档,数据库名、表名和列名等标识符应该只包含字母、数字、下划线、美元符号和 Unicode 字符。在这种情况下,您可以使用反引号(`)将数据库名括起来,以便正确解析。

解决方式:把数据库名 反引号  引起来`jeecg-boot`就可以了

GRANT ALL PRIVILEGES ON `jeecg-boot`.* TO 'jeecgoot'@'%';

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/508861
推荐阅读
相关标签
  

闽ICP备14008679号