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