How To Loop Through A Result Set in MySQL Strored Procedure
Sometimes we get situations to perform a set of tasks for a result set. There are 2 ways to do it. 1. We can fetch the result set in server side(like php) and loop through the data in server side and execute the stored procedure one by one. 2. We can use cursor to do […]