Function에 관한 기초나 개념이 없어서여...
이런건 왜 만드는지...
CREATE OR REPLACE
function get_f_ttlecode(fnc_sysclas varchar2,fnc_ttlecode varchar2)
return varchar2 is
fnc_ttledesc varchar2(30);
begin
select ttle_desc
into fnc_ttledesc
from f_ttlecode
where sys_clas = fnc_sysclas
and ttle_code = fnc_ttlecode;
return(fnc_ttledesc);
exception
when no_data_found then
fnc_ttledesc := ' ';
return(fnc_ttledesc);
end;
/
아래와 같은 error가 납니다.
LINE/COL ERROR
-------- -----------------------------------------------------------------
5/12 PL/SQL: SQL Statement ignored
7/18 PLS-00201: identifier 'F_TTLECODE' must be declared
도와 주세여...
좋은 하루 되시구여...
|