主頁 > 知識庫 > postgresql查詢自動將大寫的名稱轉(zhuǎn)換為小寫的案例

postgresql查詢自動將大寫的名稱轉(zhuǎn)換為小寫的案例

熱門標簽:移動外呼系統(tǒng)模擬題 江蘇400電話辦理官方 濟南外呼網(wǎng)絡電話線路 400電話申請客服 電銷機器人能補救房產(chǎn)中介嗎 天津開發(fā)區(qū)地圖標注app 地圖標注要花多少錢 廣州電銷機器人公司招聘 電話機器人怎么換人工座席

我就廢話不多說了,大家還是直接看代碼吧~

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

postgis查詢字段是將字段字段轉(zhuǎn)為小寫,如果需要大寫的字符,需要加雙引號

補充: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)

> 從上面可以看出,如果不加雙引號,那么表名都會被轉(zhuǎn)化為小寫。如果想要大小寫混用,需要添加雙引號。

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      | {}

實驗證明,字段與用戶同樣會被自動轉(zhuǎn)化為小寫,除非添加雙引號。 其實最好的辦法就是全部用小寫,這樣才能盡量減少問題的出現(xiàn)。

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • PostgreSQL 查看表的主外鍵等約束關系詳解
  • PostgreSQL中enable、disable和validate外鍵約束的實例
  • postgresql 實現(xiàn)字符串分割字段轉(zhuǎn)列表查詢
  • postgresql 查詢集合結(jié)果用逗號分隔返回字符串處理的操作
  • postgresql數(shù)據(jù)庫連接數(shù)和狀態(tài)查詢操作
  • postgresql數(shù)據(jù)庫使用說明_實現(xiàn)時間范圍查詢
  • Postgresql 查詢表引用或被引用的外鍵操作

標簽:辛集 昭通 寶雞 榆林 海西 溫州 濮陽 杭州

巨人網(wǎng)絡通訊聲明:本文標題《postgresql查詢自動將大寫的名稱轉(zhuǎn)換為小寫的案例》,本文關鍵詞  postgresql,查詢,自動,將,大,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《postgresql查詢自動將大寫的名稱轉(zhuǎn)換為小寫的案例》相關的同類信息!
  • 本頁收集關于postgresql查詢自動將大寫的名稱轉(zhuǎn)換為小寫的案例的相關信息資訊供網(wǎng)民參考!
  • 推薦文章