PSQL [错误] - 将值识别为列

时间:2017-07-04 06:42:35

标签: postgresql sql-insert string-constant

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

这是我的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 ...

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

1 个答案:

答案 0 :(得分:1)

试试这个:

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