Computer >> Máy Tính >  >> Lập trình >> MySQL

MySQL Stored thủ tục để khai báo hai giá trị và thực hiện phép toán

Trước tiên, hãy để chúng tôi tạo một thủ tục được lưu trữ -

mysql> delimiter //
mysql> create procedure declare_demo_sp()
   begin
   declare Value1 int;
   declare Value2 int;
   set Value1=100;
   set Value2=2000;
   select Value1,Value2,Value1*Value2 as MultiplicationResult;
   end
   //
Query OK, 0 rows affected (0.00 sec)
mysql> delimiter ;

Gọi một thủ tục được lưu trữ bằng lệnh CALL -

mysql> call declare_demo_sp();

Điều này sẽ tạo ra kết quả sau -

+--------+--------+----------------------+
| Value1 | Value2 | MultiplicationResult |
+--------+--------+----------------------+
|    100 |   2000 |               200000 |
+--------+--------+----------------------+
1 row in set (0.00 sec)
Query OK, 0 rows affected (0.00 sec)