আসুন প্রথমে একটি সংরক্ষিত পদ্ধতি তৈরি করি -
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 ;
CALL কমান্ড -
ব্যবহার করে একটি সঞ্চিত পদ্ধতিতে কল করুনmysql> call declare_demo_sp();
এটি নিম্নলিখিত আউটপুট −
তৈরি করবে+--------+--------+----------------------+ | Value1 | Value2 | MultiplicationResult | +--------+--------+----------------------+ | 100 | 2000 | 200000 | +--------+--------+----------------------+ 1 row in set (0.00 sec) Query OK, 0 rows affected (0.00 sec)