postgresql 內建函式

2021-09-28 15:12:55 字數 828 閱讀 8316

一:算術函式(數值計算)

1, + - * /

2, abs-絕對值 abs(數值)

3, mod-求餘 mod(被除數,除數)

4,round-四捨五入 round(物件數值,保留小數的位數)

二:字串函式(字串操作)

1,||-拼接

select str1,str2 ,str1|| str2 as str_concat from 表名

2,length-字串長度 length(字串)

3,lower-小寫轉換 lower(字串)

4,replace replace(物件字串,替換前的字串,替換後的字串)

5,substring --字串的擷取 substring(物件字串 from 擷取的起始位置 for 擷取的字元數)

6,upper – 大寫轉換 upper(字串)

三:日期函式(日期操作)

1,current_date —當前日期

2,current_time -----當前時間

3,current_timestamp ----當前日期和時間

4,extract – 擷取日期元素 extract(日期元素 from 日期)

四:轉換函式**換資料型別和值)

1,cast ----型別轉換 cast**換前的值 as 想要轉換的資料型別)

PostgreSQL 內建高可用方案

注意 以下內容翻譯與postgresql 10.3 高可用篇 是sdf 修改過的乙個檔案系統複製的版本 若乙個電腦的檔案系統發生變化,則這些改變會被映象複製到其他所有的檔案系統中。唯一的約束是 映象複製的時候必須確保 從庫和要複製的檔案系統已經保持一致,尤其是 往從庫 寫操作的時候必須是和往主庫寫是...

postgreSQL常用函式

select coalesce sum duration 0 若sum duration 返回值為空,則為其賦值0 select to date 2013 12 20 yyyy mm dd 字串轉化為date型別 select date 2013 10 28 01 00 interval 50 mi...

postgresql常用函式

create table search.t test 20200108 c id varchar 300 c field varchar 300 insert into search.t test 20200108 values 1 醫療器械類,化妝品類,藥品類,食品類 concat ws第乙個引數...