0

几天前我刚开始学习数据库。我遇到了这个问题,我的值被识别为一列,并且它吐出了一个错误。

这是我的News桌子:

id | bodyText | url |  createdAt | updatedAt 
----+----------+-----+-----------+-----------

这是我在 psql 中运行的命令:

INSERT INTO "News" ("bodyText") VALUES ("this is a test");

这是我得到的错误:

ERROR:  column "this is a test" does not exist
LINE 1: INSERT INTO "News" ("bodyText") VALUES ("this is a ...

我试过删除双引号,添加它,逐行执行,到目前为止我还没有找到答案。有人对此有答案吗?提前致谢。

4

1 回答 1

1

尝试这个:

INSERT INTO "Notifications" ("bodyText") VALUES ('this is a test');
于 2017-07-04T06:44:28.810 回答