1. 程式人生 > 其它 >人大金倉資料庫新增substring_index函式

人大金倉資料庫新增substring_index函式

技術標籤:資料庫

kingbase

create function substring_index(f_string in text, f_delimiter in varchar2, f_position in number)  return text
as 
	o_string text;
	v_direction int;
	v_instr_pos int;
begin 

	IF f