-1

在此处输入图像描述

这是我的桌子的样子,这是我的查询

query = "insert into archive.exports (DocumentID, from, to, sendDate, dadbox, sonbox, sendBy) values(" + DocumentNum + ", " + from + ", " + to + ", '" + this.date.Value.ToShortDateString() + "', " + DadBox + ", " + SunBox + ", '" + SendBy + "')";

它给了我这个错误 在此处输入图像描述

谁能告诉我错误在哪里,对不起我的英语不好

4

1 回答 1

1

from并且to是保留关键字,恰好是您的列的名称。为了避免语法错误,应使用反引号对列名进行转义。前任,

INSERT INTO archive.exports (DocumentID, `from`, `to`,...)

如果您有权更改表,请更改不在保留关键字列表中的列名,以防止将来再次出现相同的错误。

于 2013-09-13T13:17:02.453 回答