我正在尝试在 postgres 表中进行简单的插入,但我收到一个错误,即我尝试插入的值被解释为列名
INSERT INTO "imageTagBusinessMainCategory"
(id, businessMainCategory)
VALUES
(DEFAULT, "auto dealer")
其中 id 设置为主键,自动递增,不为空。这些是我在 phpPgAdmin 中设置表格时勾选的框。
我收到了这个错误:
ERROR: ERROR: column "auto dealer" does not exist
Query = INSERT
INTO "imageTagBusinessMainCategory"
(id, businessMainCategory)
VALUES
(DEFAULT,
"auto dealer")
我已经将我的表名放在双引号中,正如我在这里读到的那样。
并且习惯于DEFAULT
按照我在这里读到的那样自动增加 id 。
有任何想法吗?谢谢!