您好,登錄后才能下訂單哦!
函數(shù)的分類
=========================================================
單行函數(shù):一個(gè)input對(duì)應(yīng)一個(gè)output,input和output存在一一對(duì)應(yīng)的關(guān)系 如lower
組函數(shù): 多個(gè)input,但是只對(duì)應(yīng)一個(gè)output。如 sum()
=========================================================
單行函數(shù)
特點(diǎn):
每行返回一個(gè)結(jié)果,輸入輸出存在一一對(duì)應(yīng)的關(guān)系
能嵌套使用 ,一個(gè)函數(shù)的輸出能做另外一個(gè)函數(shù)的輸入 如:select lowner(upper('aa')) from dual;
傳入的變量可以是列的值,也可以是表達(dá)式。 如 select lower(ename) from emp;
=========================================================
字符函數(shù):
1、大小寫(xiě)處理(upper lower),對(duì)字符串
SQL>select upper(ename),sal from emp;
SQL>select lower(ename),sal from emp;
2、連接函數(shù) concat
SQL>select concat('Hello','World') from dual;
3、截取 substr(c1,n1,n2)
n1 開(kāi)始時(shí)候的位置
n2 截取的長(zhǎng)度,默認(rèn)為截取到最后。
SQL>select substr('HelloWorld',6,2) from dual;
4、instr 指定字符在某個(gè)字符串中的第幾位
SQL>select instr('abcdefg','c') from dual; c在字符串xxx的第幾位
SQL>select instr('abcdefg','c',-1) from dual; 從右邊往左邊數(shù),第一個(gè)c在第幾位 第三個(gè)參數(shù)表示查找的方向
SQL>select instr('abcdefgc','c',-1) from dual;
SQL>select instr('abcdefgc','c',-1,2) from dual;
5、取長(zhǎng) length
select length('HeloWorld') from dual;
select length('') from dual;
6、位數(shù)填充
①左填充 lpad(c1,n,c2) 返回指定長(zhǎng)度為n的字符串
SQL>select lpad(sal,10,'*') from emp;
②右填充
SQL>select rpad(sal,10,'*') from emp;
7、修剪trim
SQL>select trim(' Hello ') from dual; --截取,兩邊的空格。作用 留言板空格的問(wèn)題,可能不小心按住了很多空格
SQL>select ltrim(' Hello ') from dual;
SQL>select rtrim(' Hello ') from dual;
8、例子
SQL>select empno,concat('name is ',ename) NAME,job,length(ename),instr(ename,'A') "contains 'A'"
from emp
where substr(job,5) = 'GER';
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。