当前位置: 代码迷 >> 综合 >> SQL错误(1064):You have an error in your SQL syntax; check the manual that corresponds to your MySQL
  详细解决方案

SQL错误(1064):You have an error in your SQL syntax; check the manual that corresponds to your MySQL

热度:76   发布时间:2023-12-15 17:10:04.0

错误信息

在 mysql 中,执行如下语句报错:

create table dx_dfs (
ID VARCHAR2(32) NOT NULL comment 'P',
Ywlx number(5) comment '业务类型',
Ywid VARCHAR2(32) comment '业务ID',
FsrID VARCHAR2(32) comment '发送人ID',
JsrID  VARCHAR2(32) comment '接收人ID',
Jsrsj VARCHAR2(32) NOT NULL comment '接收人手机',
Dxnr VARCHAR2(256) NOT NULL comment '短信内容',
Fsbs1 VARCHAR2(64) comment '发送标识1',
);

这个错误的信息如下:

SQL错误(1064):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 ‘VARCHAR2(32) NOT NULL comment ‘P’,
Ywlx number(5) comment ‘业务类型’,
Ywid’ at line 2

MySql语法错误

解决方案

1064 错误码,就代表是语法错误,语法错误的范围非常广泛。我这里是关键字错误。

解决方法:

number 改成 numeric
varchar2 改成 varchar

如下:

create table dx_dfs (
ID VARCHAR(32) NOT NULL comment 'P',
Ywlx numeric(5) comment '业务类型',
Ywid VARCHAR(32) comment '业务ID',
FsrID VARCHAR(32) comment '发送人ID',
JsrID  VARCHAR(32) comment '接收人ID',
Jsrsj VARCHAR(32) NOT NULL comment '接收人手机',
Dxnr VARCHAR(256) NOT NULL comment '短信内容',
Fsbs1 VARCHAR(64) comment '发送标识1',
);
  相关解决方案