📜  PL/SQL 中两个数的和

📅  最后修改于: 2021-09-08 15:22:54             🧑  作者: Mango

先决条件——PL/SQL 介绍
在 PL/SQL 代码中,命令组被安排在一个块中。块组相关的声明或语句。

在声明部分,我们声明变量,在开始和结束部分之间,我们执行操作。

在这里,首先,我们取三个变量 x、y 和 z 并在 x 和 y 中分配值,然后将两个数字相加后,将结果值分配给 z 并打印 z。

例子:

Input : 15 25
Output : 40
Input : 250 400
Output : 650

以下是所需的实现:

SQL
declare
 
-- declare variable x, y
-- and z of datatype number
x number(5);            
y number(5);           
z number(7);       
 
begin
 
-- Here we Assigning 10 into x
x:=10;                
 
-- Assigning 20 into x
y:=20;                
 
-- Assigning sum of x and y into z
z:=x+y;                
 
-- Print the Result
dbms_output.put_line('Sum is '||z);
end;
/                        
-- Program End


输出 :

Sum is 30