创建mysql数据库出现ERROR 1064 (42000): You have an error in your SQL syntax; check the ......问题

mysql> create database gong321;
Query OK, 1 row affected (0.08 sec)
mysql> use gong321;
Database changed
mysql> creat table user
-> (id char(20)),
-> name varchar(20),
-> primary key(id));
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 'creat
table user
(id char(20)),
name varchar(20),
primary key(id))' at line 1
mysql>

请问是哪的问题,要怎么改???但是用SQLyog创建有时也会出现这种情况......

你的建表语句错了,多写了一个括号,在(id char(20)),这里多了后半边括号。
温馨提示:内容为网友见解,仅供参考
无其他回答

创建mysql数据库出现ERROR 1064 (42000): You have an error in your...
标点或字体要半角英文显示。你把输入法调到英文,再重新输入:create database shiyun;

创建mysql数据库出现ERROR 1064 (42000): You have an error in your...
你的建表语句错了,多写了一个括号,在(id char(20)),这里多了后半边括号。

...You have an error in your SQL syntax; check the manual that c...
create TABLE userclob( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30) NOT NULL , note LONGTEXT);注意符号 错误 userclob { LONGTEXT,

创建mysql数据库出现ERROR 1064 (42000): You have an error in 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 '))' at line 9 double(18) 修改一下 mysql> create table VehicleInfoTb1 -> (-> id int(11) primary key auto_inc...

...42000): You have an error in your SQL syntax
我看你的拼写错误很多,包括错误提示中的"dorp",这个应当是DROP。敲错了命令当然出错,计算机不是人,不能自动帮你纠正。错误原因:DROP 单词被敲错 你在提问的时候DROP都没有敲上,不够认真。此外,identifed 这个单词好像也不对。

小白求助啊,MYSQL建立数据库老是提示错误error 1064
mysql错误代码1064表示用户输入的sql语句有语法错误。具体错误位置和内容会在后面的描述中写出,如: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 '这里是用户输入的SQL语句出错点...

...出现ERROR 1064 (42000): You have an error in 的问题
check int(4) default NULL,这行中,check是mysql的保留关键字,不允许使用的.换成check_num之类的

...You have an error in your SQL syntax; 。。。求指点。
表名是关键字了,换一个名字吧。不过你这个表里面没有索引

...42000): You have an error in your SQL syntax;
sql语法错误,请发下SQL语句

...You have an error in your SQL syntax; check the manual that c...
create TABLE userclob( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30) NOT NULL , note LONGTEXT);注意符号 错误 userclob { LONGTEXT,

相似回答