在oracle中如何写一个存储过程来匹配表1中的model跟表2中code的六位数,
发布网友
发布时间:2022-06-29 20:37
我来回答
共1个回答
热心网友
时间:2023-10-13 09:42
function f_match_model(p_model_id in varchar2) return varchar2 as
v_count number;
begin
select count(1) from code t where t.code like '%p_model_id%'
and rownum =1;
if v_count > 0 then
return p_model_id ;
else
return null;
end if;
end;