Pages

Ads 468x60px

Sunday, 3 June 2012

PL SQL Program For to add two numbers.


PL SQL Program For to add two numbers. 


declare
a number(2);
b number(2);
c number(2);
begin
a:=&a;
b:=&b;
c:=a+b;
dbms_output.put_line(a|| ' + '||b||' = '||c);
end;

0 comments:

Post a Comment

Total Pageviews