I have written a simple PL SQL block , i am getting this error
Please tell me whats the problem in this block ??
declare
a number:=&a;
b number:=&b;
c number:=&c'
begin
if(a>b) then
DBMS_OUTPUT.PUT_LINE(a);
else
DBMS_OUTPUT.PUT_LINE(b);
end if;
end;
/
Try (as Codo also said):