1.建立存放字串的陣列型別
create or replace type type_bind as table of varchar2(4000)
2.建立將字串轉成陣列然後返回給type_bind函式。
3.實現繫結的語法。
update dw.task_sms_list p
set p.state = 'x'
where p.sms_seq_id in
(select column_value
from the(select cast(f_pub_bind_in(v_sms_seq_id) as type_bind)
from dual));
v_sms_seq_id 如'1,2,3,4..'格式
繫結字串
bind baras cutstring1 databinder.eval container.dataitem,title tostring 12 bool databinder.eval container.dataitem,ifshow yes no eval方法可計算資料繫結控制項 如gri...
oracle實現字串擷取,查詢,替換
1 字串擷取 substr substr string,start position,length 其中,string是元字串,start position為開始位置 注意首位從0開始 length是可選項,表示子字串的位數。eg 1 substr abcdefg 0 返回結果是 abcdefg,從...
ORACLE 實現行轉列 字串求和
使用關係型資料的實際專案中,難以避免變更增加字段,有時為了方便,不想加欄位,把多個值儲存乙個欄位中,用逗號或其他分隔符進行分隔 儲存解決了,但是展示有時就比較麻煩了,比如儲存的是編碼,現在要依次解析成名稱。oracle提供非常簡單的方式來解決。1 使用wm concat field name 在or...