PostgreSQL 对字段大小写敏感

缘起

iso=> \d+ test;
Table "public.test"
Column | Type | Modifiers | Storage | Description
--------+-----------------------+-----------+----------+-------------
no | character varying(32) | not null | extended |
Name | text | not null | extended |
Indexes:
"test_pkey" PRIMARY KEY, btree (no, "Name")
Has OIDs: no iso=> insert into test(no, Name) values("", "jihite");
ERROR: column "name" of relation "test" does not exist
LINE 1: insert into test(no, Name) values("", "jihite");
^

插入表的时候,提示我没有字段‘Name’,可我明明写的是‘Name’,可定睛一看,人家提示的是没有name。这就奇怪了,我输入的是大写的'N',为何提示是小写的'n'。

由于 PostgreSQL 是大小写敏感的,并默认对SQL语句转化为小写,所以不论我是写Name还是NAME还是NAmE,统统转化为name。

那么怎么破解呢,毕竟人家表里确确实实有Name字段,加上双引号就行了。看例子

iso=> insert into test(no, "Name") values ('', 'jihite');
INSERT 0 1
上一篇:【紫书】uva133 The Dole Queue 参数偷懒技巧


下一篇:OpenCV3编程入门笔记(3)线性滤波、非线性滤波、图像深度、通道