ora instr函式的用法

2021-08-02 07:58:38 字數 660 閱讀 1635

fatherstring:要在此字串中查詢。

fatherstring:要在string1中查詢的字串。

start_position:從string1開始查詢的位置。可選,預設為1,正數時,從左到右檢索,負數時,從右到左檢索。

注:如果沒有查詢到,返回0。

例如:select instr(『abcd』,』a』) from dual;  –返回1

select instr(『abcd』,』c』) from dual;  –返回3

select instr(『abcd』,』e』) from dual;  –返回0

該函式可以用於模糊查詢以及判斷包含關係:

例如:① select code, name, dept, occupation from staff where instr(code, 『001』) > 0;

等同於select code, name, dept, occupation from staff where code like 『%001%』 ;

② select ccn,mas_loc from mas_loc where instr(『fh,fhh,fhm』,ccn)>0;

等同於select ccn,mas_loc from mas_loc where ccn in (『fh』,』fhh』,』fhm』);

函式的用法 INDEXC函式的用法

1 製作小 箱 如何利用excel製作簡單的小 箱?這裡與大家分享借用index函式來實現。在單元格中輸入公式 index a2 a17,randbetween 2,counta a2 a17 公式說明 counta函式表示統計非空單元格格式 randbetween函式表示隨機生成整數 2 隔行提取...

函式的用法 CELL函式高階用法,

資料多時看的眼花繚亂,使用聚光燈功能突出顯示當前的行和列,在檢視資料時非常方便,wps是自帶該功能的。選中要設定的資料區域,在 開始 選項卡下點 條件格式 選擇 新建規則 在彈出的 新建格式規則 視窗中選擇 使用公式確定要設定格式的單元格 在 為符合此公式的值設定格式 下輸入公式 or cell r...

lseek函式的用法lseek函式的用法

使用 lseek 函式可以改變檔案的 cfo include unistd.h include off t lseek int filedes,off t offset,int whence 返回值 新的偏移量 成功 1 失敗 引數 offset 的含義取決於引數 whence 1.如果 whenc...