返回s首位字母的ascii碼
select ascii('abc') from dual --97
返回數值i的ascii字元
select chr(97) from dual -- a
將每個單詞首位字母大寫其它字母小寫
select initcap('hello') from dual --hello
返回a在abca中第1位開始第2次出現的位置
select instr('abca','a',1,2) from dual
類似instr 返回位元組
select instrb('abca','a',1,2) from dual
Oracle函式篇 lpad 函式
lpad函式從左邊對字串使用指定的字元進行填充。從其字面意思也可以理解,l是left的簡寫,pad是填充的意思,所以lpad就是從左邊填充的意思。語法格式如下 lpad string,padded length,pad string 欄位名稱 說明string準備被填充的字串 padded leng...
Oracle篇 之 資料操作
一 dml 資料操作語言 data manipulation language 1 insert insert into student values 1,briup1 20,male 2 update update student set name briup2 age 21 where id 1...
Python之函式篇
定義函式def 呼叫函式 函式名 變數 定義函式是不會執行的,沒有結果返回 只有呼叫函式的時候才會有返回值 返回值是儲存函式的運算結果到變數中繼續操作與運算 print可以輸出但是不儲存返回結果 return只能返回乙個物件,如果需要返回多個,將內容封裝為乙個元組返回 print result 使用...