Oracle單行函式

2021-07-26 10:40:11 字數 757 閱讀 2157

concat

select concat('hello','world') from dual;

substr 字串截斷

select substr('helloworld',1,5) from dual;

length

select length('helloworld') from dual;

instr 計算字元在字串中首次出現的位置

select instr('hello','l') from dual;

lpad

select last_name,lpad(salary,10,' ') from employees;

rpad

select last_name,rpad(salary,10,' ') from employees;

trim 字元移除

select trim('h' from 'hellohhworkdh') from dual;

replace 字元替換(將字串中所有包含的字元全部替換) 

select replace('hello hery','h','w') from dual;

lower

select lower('hello') from dual;

upper

select upper('hello') from dual;

initcap 首字母轉換成大寫

select initcap('hello,world') from dual;

oracle單行函式

1.字元函式 upper 全大寫 lower 全小寫 initcap 首字母大寫 length 取長度 substr 擷取字串 replace 替換 2.數值函式 round 四捨五入 trunc 擷取 mod 取餘 3.日期函式 當前日期 sysdate 日期 數字 日期 日期 數字 日期 日期 ...

oracle單行函式

單行函式 函式類別 單行 返回單個結果 substr,length 多行 返回多個結果,any,all 單行的分類 字元類,日期類,數字類,轉換類,通用類 1.字元類 轉換大小寫 lower 轉換為小寫 select ename,lower ename from emp upper 轉換為大寫 se...

Oracle單行函式

單行函式 運算元據物件,接受引數返回乙個結果,只對一行進行變換,每行返回乙個結果,可以轉換資料型別,可以巢狀,引數可以是一列或乙個值 一 字元函式 concat 字串連線,相當於 initcap 將引數的第乙個字母變為大寫 lower 將引數轉換為全部小寫字母 upper 將引數轉換為全部大寫字母 ...