postgres:错误:列“ catcode”不存在

时间:2018-08-09 08:11:23

标签: sql postgresql postgresql-9.1 postgresql-9.4 postgresql-9.2

我有一个称为catcode的postgress表。

select Catcode from catcodes;

它给我这样的错误

ERROR:  column "catcode" does not exist
LINE 1: select Catcode from catcodes;

当我描述表格时,有一列Catcode。

列|类型

----------------- + ------------------- +

邮政编码|字符变化|

select * from catcodes

虽然可以。

1 个答案:

答案 0 :(得分:1)

Postgres区分大小写,您应该尝试使用引号

SELECT "Catcode" FROM catcodes;

sql - Postgres Case Sensitivity - Stack Overflow