我刚开始学习数据库。 我遇到了这个问题,我的值被识别为一个列,并且它会吐出一个错误。
这是我的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 ...
我尝试删除双引号,添加它,逐行执行,到目前为止我还没有找到答案。有没有人对此有答案?提前谢谢。
答案 0 :(得分:1)
试试这个:
INSERT INTO "Notifications" ("bodyText") VALUES ('this is a test');