如果您使用 var_char 而不是 varchar 类型,则会发生此错误。要消除此类错误,请使用 varchar(100) 代替 var_char(100)。
现在让我们看看此错误是如何发生的 -
mysql> create table removeErrorDemo -> ( -> StudentId int, -> StudentName var_char(50) -> );
以下是显示错误的输出 -
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 'var_char(50) )' at line 4
现在让我们消除错误。以下是删除错误 1064 (42000) 的查询 -
mysql> create table removeErrorDemo -> ( -> StudentId int, -> StudentName varchar(100) -> ); Query OK, 0 rows affected (1.72 sec)
上面我们已经正确设置了varchar,因此不会出现错误。
以上是解决 MySQL ERROR 1064 (42000): 你的语法有错误?的详细内容。更多信息请关注PHP中文网其他相关文章!