語法:select * from TABLE表 where
dbms_lob.instr(欄位名(clod型別),"查詢條件",1,1) > 0
create table products(
productid number(10) not null,
name varchar2(255),
description CLOB);
查詢語句:
select t.productid, t.name from products t
where dbms_lob.instr(t.description, "aaa", 1, 1) > 0;
在Oracle中,可以使用instr函式對某個字串進行判斷,判斷其是否含有指定的字元。其語法為:
instr(sourceString,destString,start,appearPosition).
其中sourceString代表源字串;destString代表想聰源字串中查詢的子串;start代表查詢的開始位置,該引數可選的,預設為
1;appearPosition代表想從源字元中查找出第幾次出現的destString,該引數也是可選的,預設為1;如果start的值為負數,那
麼代表從右往左進行查詢。
返回值為:查詢到的字串的位置。
語法:select * from TABLE表 where
dbms_lob.instr(欄位名(clod型別),"查詢條件",1,1) > 0
create table products(
productid number(10) not null,
name varchar2(255),
description CLOB);
查詢語句:
select t.productid, t.name from products t
where dbms_lob.instr(t.description, "aaa", 1, 1) > 0;
在Oracle中,可以使用instr函式對某個字串進行判斷,判斷其是否含有指定的字元。其語法為:
instr(sourceString,destString,start,appearPosition).
其中sourceString代表源字串;destString代表想聰源字串中查詢的子串;start代表查詢的開始位置,該引數可選的,預設為
1;appearPosition代表想從源字元中查找出第幾次出現的destString,該引數也是可選的,預設為1;如果start的值為負數,那
麼代表從右往左進行查詢。
返回值為:查詢到的字串的位置。