perform sum of two numbers using PLSQL
Easy • 0 votes
📝 Question
declare
a integer;
b integer;
ans integer;
begin
a:=&a;
b:=&b;
ans:=a+b;
dbms_output.put_line('sum of '||a||' and '||b||' is '||ans);
end;
/