Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download
DBMS Study Notes PDF
DBMS Tech Interview Q & A PDF
DBMS Latest Projects
DBMS Projects & All Latest Projects PDF- Free Download
PL SQL Program For to find biggest no.
declare a number(2); b number(2); c number(2); begin a:=&a; b:=&b; c:=&c; if(a<b) then if(b<c) then dbms_output.put_line(c||' is the biggest number'); else dbms_output.put_line(b||' is the biggest number'); end if; else if(a<c) then dbms_output.put_line(c||' is the biggest number'); else dbms_output.put_line(a||' is the biggest number'); end if; end if; end;