Heim >Datenbank >MySQL-Tutorial >Behebung von MySQL-FEHLER 1064 (42000): Ist Ihre Syntax falsch?

Behebung von MySQL-FEHLER 1064 (42000): Ist Ihre Syntax falsch?

王林
王林nach vorne
2023-08-28 09:25:021677Durchsuche

解决 MySQL ERROR 1064 (42000): 你的语法有错误?

如果您使用 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,因此不会出现错误。

Das obige ist der detaillierte Inhalt vonBehebung von MySQL-FEHLER 1064 (42000): Ist Ihre Syntax falsch?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:tutorialspoint.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen