时间:2021-05-24
我就废话不多说了,大家还是直接看代码吧~
SELECT sum(aa) as "recordNumber" FROM table SELECT sum(aa) as recordNumber FROM tablepostgis查询字段是将字段字段转为小写,如果需要大写的字符,需要加双引号
补充:Postgresql中表名、列名、用户名大小写问题
注意:是双引号,单引号可能会被解析成普通字符,因而是不识别的字段
highgo=# create table "ExChange" (id int);CREATE TABLEhighgo=# create table ExChange (id int);CREATE TABLEhighgo=# \d List of relations Schema | Name | Type | Owner----------------+----------+-------+-------- oracle_catalog | dual | view | highgo public | ExChange | table | highgo public | exchange | table | highgo public | myt | table | highgo public | t1 | table | highgo public | tran | table | highgo(6 rows) highgo=# insert into exchange values (1);INSERT 0 1highgo=# insert into "ExChange" values (2);INSERT 0 1 highgo=# select * FROM exchange ; id---- 1(1 row)highgo=# select * FROM ExChange ; id---- 1(1 row) highgo=# select * FROM "ExChange" ; id---- 2(1 row) highgo=# insert into ExChange values (2);INSERT 0 1highgo=# select * FROM "ExChange" ; id---- 2(1 row) highgo=# select * FROM exchange ; id---- 1 2(2 rows)> 从上面可以看出,如果不加双引号,那么表名都会被转化为小写。如果想要大小写混用,需要添加双引号。
highgo=# create table exchange (ID int,id int);ERROR: 42701: column "id" specified more than oncehighgo=# create table exchange (ID int,name text);CREATE TABLEhighgo=# select id from exchange ; id----(0 rows) highgo=# select ID from exchange ; id----(0 rows) highgo=# select "ID" from exchange ;ERROR: 42703: column "ID" does not existLINE 1: select "ID" from exchange ; highgo=# \d exchange Table "public.exchange" Column | Type | Modifiers--------+---------+----------- id | integer | name | text | highgo=# \du List of roles Role name | Attributes | Member of-----------+------------------------------------------------------------+----------- aaa | | {} gpadmin | Superuser, Create role, Create DB | {} highgo | Superuser, Create role, Create DB, Replication, Bypass RLS | {} replica | Replication | {} highgo=# create table AAA;ERROR: 42601: syntax error at or near ";"LINE 1: create table AAA; ^highgo=# create user AAA;ERROR: 42710: role "aaa" already existshighgo=# create user "AAA";CREATE ROLEhighgo=# \du List of roles Role name | Attributes | Member of-----------+------------------------------------------------------------+----------- AAA | | {} aaa | | {} gpadmin | Superuser, Create role, Create DB | {} highgo | Superuser, Create role, Create DB, Replication, Bypass RLS | {} replica | Replication | {}实验证明,字段与用户同样会被自动转化为小写,除非添加双引号。 其实最好的办法就是全部用小写,这样才能尽量减少问题的出现。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
案例: 要求从控制台接收用户输入的一个字母,如果这个字母是小写,转换为大写;如果这个字母是大写,转换为小写;只能输入字母,如果是其他值,提示数据有误!实现代码
这个功能要用到以下几个命令:到大写命令到小写命令语法:文本型到大/小写(欲变换的文本)例程说明通过“到大写”命令将一段小写字母文本转换为大写格式。例如:“Abc
1.字符串大小写转value="wangdianchao"#转换为大写big_value=value.upper()print(big_value)#转换为小写
本文实例讲述了C语言实现字母大小写转换的方法。分享给大家供大家参考。具体实现方法如下:/**将大写字母转换为小写字母*/#includeintlower(int
本文主要讨论PostgreSQL中大小写不敏感存在的问题。默认情况下,PostgreSQL会将列名和表名全部转换为小写状态。图1Person与person如图1