SQL中的單記錄函式

2021-06-16 09:57:21 字數 486 閱讀 8868

sql中的單記錄函式

3.concat

連線兩個字串;

sql> select concat(』010-』,』88888888』)||』轉23』高幹競** from dual;

高幹競**

----------------

010-88888888轉23

4.initcap

返回字串並將字串的第乙個字母變為大寫;

sql> select initcap(』smith』) upp from dual;

upp-----

smith

5.instr(c1,c2,i,j)

在乙個字串中搜尋指定的字元,返回發現指定的字元的位置;

c1 被搜尋的字串

c2 希望搜尋的字串

i 搜尋的開始位置,預設為1

j 出現的位置,預設為1

sql> select instr(』oracle

x

sql的函式記錄

1 sql中擷取字串函式 1.substr string,start position,length 求子字串,返回字串 substr abcdefg 0 返回 abcdefg,擷取所有字元 substr abcdefg 2 返回 cdefg,擷取從c開始之後所有字元 substr abcdefg ...

pg中的sql用法,記錄

1 隨機數 floor random 43200 1 1 2 時間轉換 now當前時間,2 text將數字轉換成字元,字串拼接符 select now 2 text day interval pg database size 檢視資料庫的大小 pg relation size 可以檢視表的大小 pg...

sql中單錶查詢

use test 查詢大氣質量表中的全部內容。select from all 查詢北京的大氣質量資料。select from all where 城市名 北京 查詢不同月份pm2.5的最大值。select 月份 max pm2.5 from all group by 月份 降序查詢不同城市pm10的...