সংরক্ষিত পদ্ধতিতে শর্ত সেট করতে, নীচের সিনট্যাক্স −
ব্যবহার করুনif yourCondition then yourStatement1; else yourStatement2'; end if ; end //
সংরক্ষিত পদ্ধতি -
-এ অনুপস্থিত সেমিকোলন সংশোধন করার জন্য উপরের বাক্য গঠনটি বাস্তবায়ন করা যাকmysql> delimiter // mysql> create procedure Test_Demo(In inputValue int) -> BEGIN -> if inputValue=10 then -> select 'You have won 100$'; -> else -> select 'Sorry !!!'; -> end if ; -> end -> // Query OK, 0 rows affected (0.20 sec) mysql> delimiter ;
এখন আপনি CALL কমান্ড -
ব্যবহার করে সঞ্চিত পদ্ধতিতে কল করতে পারেনmysql> call Test_Demo(10);
এটি নিম্নলিখিত আউটপুট −
তৈরি করবে+-------------------+ | You have won 100$ | +-------------------+ | You have won 100$ | +-------------------+ 1 row in set (0.00 sec) Query OK, 0 rows affected (0.01 sec)