oracle個別函式的了解

2021-12-29 22:49:33 字數 959 閱讀 7749

oracle個別函式的了解

instr:instr方法的格式為 

www.2cto.com  

instr(源字串, 目標字串, 起始位置, 匹配序號) 

預設查詢順序為從左到右。當起始位置為負數的時候,從右邊開始查詢。 

例:select instr(『orc+001『,『+『,1,1) from dual 

返回的是"4" 如果該字串沒有匹配字元 返回的是「0」。 

substr:取子字串 取子字串 

substr(源字串,起始位置,要取多少位) 

從「起始位置」開始,取「多少"個 

例 select substr(『orc+001『,1,3) from dual; 

返回的是「orc」 

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

ascii碼對應表: 

chr(9) tab空格 chr(10) 換行 chr(13) 回車 chr(13)&chr(10) 回車換行 chr(32) 空格符 chr(34) 雙引號 chr(39) 單引號 

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

select (case 9 when 0 then '未繳費;' when 1 then '已繳費;' else '無需繳費;' end) from dual;

select decode(1,0,'未繳費',1,'繳費','無需繳費') from dual; 

select add_months(trunc(sysdate), -2) from dual; 

select (trunc(sysdate) + 10/24) as kk from dual; 2012-07-19 10:00:00 

select * from dba_users;

select dis from dba_sys_privs t order by t.grantee

了解 Oracle 的游標

一,概念 游標是sql的乙個記憶體工作區,由系統或使用者以變數的形式定義。游標的作用就是用於臨時儲存從資料庫中提取的資料塊。二,作用 用於定位結果集的行和遍歷結果集 三,使用 建立乙個游標 type ref cur 定義型別變數 s ref cursor 相當於資料型別,不過是引用游標的資料型別。t...

oracle 了解資訊

1.資料庫版本 select from v instance 2.庫物理logic結構 1 重做日誌 select from v log 所在位置 select from v logfile select a.group b.member,a.bytes 1024 1024 size mb from...

初步了解oracle

在oracle10g 11g中預設scott被鎖定。a 啟動兩個服務 listener service b 開始 執行 sqlplus或 sqlplusw a conn connect scott tiger system orcl sys orcl as sysdba b 解鎖 鎖定 alter ...