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

PSQL [error] - value being recognized as a column

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

这是我的 News table:

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 ...

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

试试这个:

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