我的编程空间,编程开发者的网络收藏夹
学习永远不晚

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your

 遇到这个报错?不知道怎么办?要哭了?

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 '("123456") where user='root'' at line 1

 

MySQL grant的SQL命令其实在5.X之后就已经被弃用了


首先,你先检查一下你的MySQL版本, 大多数执行报错的MySQL版本是8.0的。


1.先用MySQL 8.0试一下

mysql> grant all privileges on test.* to test@'%' identified by '123456';  

这里报错

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 'identified by '123456'' at line 1

2.再用MySQL 5.7试一下

mysql> grant all privileges on test.* to test@'%' identified by '123456';    Query OK, 0 rows affected, 1 warning (0.08 sec)mysql> flush privileges;

正确的执行赋权


那么在MySQL8.0版本及以后,我们如何正确执行grant呢?

先创建用户,再赋予授权。

mysql> create user test@'localhost' identified by '123456';


Query OK, 0 rows affected (0.10 sec)

mysql> grant all privileges on test.* to test@'localhost';


Query OK, 0 rows affected (0.17 sec)

mysql> flush privileges;


Query OK, 0 rows affected (0.18 sec)

这个方法也适用MySQL5.7版本,所以建议大家以后使用这种方式赋权,一键建用户加赋权官方已经弃用了。
 

 

来源地址:https://blog.csdn.net/qq_57309855/article/details/127602061

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

You have an error in your SQL syntax; check the manual that corresponds解决方法

You have an error in your SQL syntax; check the manual that corresponds to your mysql server version这种错误主要是由于,使用了现在版本的m
2023-02-05

pycharm中的python与mysql(1064):“You have an error in your SQL syntax; check the manual that corresponds

一、报错信息及代码 1064, “You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version fo
2023-08-16

全网多种方法解决You have an error in your SQL syntax; check the manual that corresponds to your MySQL server

文章目录 1. 复现错误2. 分析错误3. 解决错误4. 解决该错误的其他方法 1. 复现错误 今天在调试低代码的接口,突然报出如下的错误: 即You have an error in your SQL syntax; ch
2023-08-16

Django中创建数据库报错:ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corre

一、问题描述  Django中执行create database charset=utf8;命令报错:ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
Django中创建数据库报错:ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corre
2020-11-22

Mysql出现问题:ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corres解决方案

回城传送–》《数据库问题解决方案》 ❤️作者主页:小虚竹 ❤️作者简介:大家好,我是小虚竹。Java领域优质创作者?,CSDN博客专家?,华为云享专家?,掘金年度人气作者?,阿里云专家博主?,51CTO专家博主? ❤️技
2023-08-30

修改mysql的密码时遇到问题ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corre

由于找不到mysql的初始密码,我用免密码的方式在cmd中进入mysql对密码做了修改,并且最后成功修改了,但是走了一些弯路,就此记录一下。 注意 :我想要改为的密码为 mysql,大家想要什么密码设自己喜欢的就行 进入mysql后修改密码
2023-08-17

MySQL java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax 关键字异常处理

目录 一、异常错误二、原因三、解决方法 一、异常错误 使用mybatis插入数据时出现java.sql.SQLSyntaxErrorException异常 收到错误“由:java.sql.SQLSyntaxErrorExcept
2023-08-16

You have an error in your SQL syntax - 如何解决MySQL报错:SQL语法错误

摘要:MySQL是一种常用的关系型数据库管理系统,它提供了丰富而强大的功能来支持数据存储和查询。然而,当我们编写SQL语句时,可能会遇到各种各样的错误,其中最常见的就是SQL语法错误。本文将介绍如何解决MySQL报错中的SQL语法错误,并提
2023-10-21

编程热搜

目录