Тема: мінімальний параметр Оракл
Написати функцію, яка повертає мінімальний з трьох параметрів
create or replace function min_parameter(val1 int,val2 int,val3 int) return int is
begin
if val1<val2 and val1<val3
then
return 'min_value= '||to_char(val1);
else if val2<val1 and val2<val3
then
return 'min_value='||to_char(val2);
else if 'min_value='||to_char(val3)
then
return 'min_value=' ||to_char(val3);
endif;
end;
помилка:
PLS-00103: Encountered the symbol ";" when expecting one of the following: if
Errors: check compiler log