D
dimon_108
Здравствуйте! Вопрос, есть такой код:
declare NAME varchar2(100);
FULLACC varchar2(20);
begin
kib_name_by_acc
account,NAME,FULLACC);
select :NAME ::= NAME, :FULLACC ::= FULLACC from dual;
end;
Oracl возвращает такую ошибку:
"ORA-06550: line 5, column 16: PLS-00103: Encountered the symbol "=" when expecting one of the llowing:
. ( , * @ % & - + / at mod rem <an identifier> <a double-quoted delimited-identifier> <an exponent (**)> as from into || indicator bulk"
Помогите с синтоксисом)
declare NAME varchar2(100);
FULLACC varchar2(20);
begin
kib_name_by_acc

select :NAME ::= NAME, :FULLACC ::= FULLACC from dual;
end;
Oracl возвращает такую ошибку:
"ORA-06550: line 5, column 16: PLS-00103: Encountered the symbol "=" when expecting one of the llowing:
. ( , * @ % & - + / at mod rem <an identifier> <a double-quoted delimited-identifier> <an exponent (**)> as from into || indicator bulk"
Помогите с синтоксисом)