PostgreSQL 遇到 column "value" does not exist

初次使用PostgreSQL,在执行插入语句的时候死活插入不进去数据

INSERT INTO pre_trait ( archive_id, apply_from, owner_area_code )
VALUES ("11","12","13")
> ERROR:  column "11" does not exist
LINE 2: VALUES ("11","12","13")
                ^

这里 archive_id是主键,后来发现是把 "11" 当成一个列来存储的,需要把双引号改成单引号 即  '11'. 

原文地址:https://www.cnblogs.com/zhuguangzhe/p/11660328.html