ERROR: column "XXX" does not exist
基本信息
系统 : CentOS Linux release 7.4.1708 (Core)
产品 : OushuDB
模块 : DB
子模块 : -
描述详述
insert into demo(id) values("qwer"); --不符合标准
原因
SQL标准: 双引号用于表或字段的名称,有时您可以省略它们; 单引号用于字符串常量;
解决方案
insert into demo(id) values('qwer');