温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么在postgresql中将查询结果为大写的名称转换为小写

发布时间:2021-01-29 16:09:07 来源:亿速云 阅读:1542 作者:Leah 栏目:开发技术

怎么在postgresql中将查询结果为大写的名称转换为小写?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

 SELECT sum(aa) as "recordNumber" FROM table
 SELECT sum(aa) as recordNumber FROM table

postgis查询字段是将字段字段转为小写,如果需要大写的字符,需要加双引号

补充:Postgresql中表名、列名、用户名大小写问题

注意:是双引号,单引号可能会被解析成普通字符,因而是不识别的字段

highgo=# create table "ExChange" (id int);
CREATE TABLE
highgo=# create table ExChange (id int);
CREATE TABLE
highgo=# \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 1
highgo=# 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 1
highgo=# 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 once
highgo=# create table exchange (ID int,name text);
CREATE TABLE
highgo=# 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 exist
LINE 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 exists
highgo=# create user "AAA";
CREATE ROLE
highgo=# \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      | {}

关于怎么在postgresql中将查询结果为大写的名称转换为小写问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI