AppXwinD Learn
← Previous Program 3 of 3 Next →

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;
/
💬 Q&A (0)
← Previous Back to List Next →