create or replace function fibonacci(n binary_double) return binary_double is
begin
if n<=2 then
return 1;
else
return fibonacci(n-2) + fibonnaci(n-1);
end if;
end fibonacci;
/
getting this error when I compile/run using sql developer. Please suggest
Error(6,29): PLS-00201: identifier 'FIBONNACI' must be declared