程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL存儲過程遞歸調用

MySQL存儲過程遞歸調用

編輯:MySQL綜合教程

  有分類表tb_system_category,結構如下: [java]   CREATE TABLE `tb_system_category` (     `id` int(11) NOT NULL AUTO_INCREMENT,     `c_parent_id` int(11) NOT NULL,     `c_name` varchar(50) NOT NULL,     `c_full_name` varchar(200) DEFAULT NULL,     `c_code` varchar(50) NOT NULL,     `c_describe` text,    www.2cto.com     PRIMARY KEY (`id`)   ) ENGINE=InnoDB AUTO_INCREMENT=126 DEFAULT CHARSET=utf8;             要求使用存儲過程“根據父分類代號(c_code)取得所有子分類及孫子分類”。
          使用以下存儲過程:         1. 主存儲過程,作用是創建臨時表,並操作其他存儲過程或函數實現需求,其中臨時表的作用是存儲每個子分類的代號。流程:創建臨時表——調用存儲過程(category_findCodesByParentCode_queryAndInsert)取得所有子分類及孫子分類的代碼並存入臨時表中——調用函數(category_generateResult)生成結果字符串——刪除臨時表數據——返回生成的字符串。 [java]   CREATE PROCEDURE category_findCodesByParentCode(in cCode varchar(200))   begin   -- 調用的函數或存儲過程:category_findCodesByParentCode_queryAndInsert、category_generateResult   -- 被調用於函數或存儲過程:無       declare cRand varchar(50) default RAND();       declare result varchar(4000);          create temporary table if not exists tb_system_temp_category_categoryTree(           c_result varchar(4000),           c_rand varchar(50)       );    www.2cto.com          set max_sp_recursion_depth  = 100;          call category_findCodesByParentCode_queryAndInsert_zh(cCode, cRand);              set result = category_generateResult(cRand);          set @mySql = CONCAT('delete from tb_system_temp_category_categoryTree where c_rand = "',cRand,'"');       prepare stmt from @mySql;       execute stmt;          set @mySql = CONCAT('select "', result, '" from tb_system_user limit 0,1');       prepare stmt from @mySql;       execute stmt;   end           2. 遞歸取得所有子分類及孫子分類並存儲到臨時表中。流程:根據父分類代號查詢下級子分類代號,並通過指針迭代之——在迭代過程中,將子分類的代號存入臨時表——調用函數(category_findChildrenCountByCode)檢查子分類是否有下級分類,若無不管之;若有則遞歸調用存儲過程(category_findCodesByParentCode_queryAndInsert)取得孫子分類。 [java]   CREATE PROCEDURE category_findCodesByParentCode_queryAndInsert(in cCode varchar(200), in cRand varchar(50))   begin   -- 調用的函數或存儲過程:category_findChildrenCountByCode、category_findCodesByParentCode_queryAndInsert   -- 被調用於函數或存儲過程:category_findCodesByParentCode       declare finished int default 0;       declare thisCode varchar(200);       declare cur cursor for select c_code from tb_system_category where c_parent_id in (select id from tb_system_category where c_code = cCode);       declare continue handler for not found set finished = 1;       open cur;       fetch cur into thisCode;       while finished = 0 do           set @mySql = CONCAT('insert into tb_system_temp_category_categoryTree(c_result,c_rand) values("',thisCode,'","',cRand,'")');           prepare stmt from @mySql;           execute stmt;    www.2cto.com              if category_findChildrenCountByCode(thisCode) > 0 then               call category_findCodesByParentCode_queryAndInsert(thisCode, cRand);           end if;              fetch cur into thisCode;       end while;       close cur;          end           3. 根據分類代號取得子分類的個數。 [java]   CREATE FUNCTION category_findChildrenCountByCode(cCode varchar(200)) RETURNS int(11)   BEGIN   -- 調用的函數或存儲過程:無   -- 被調用於函數或存儲過程:category_findCodesByParentCode_queryAndInsert       declare finished int default 0;       declare count int;       declare cur cursor for select count(id) from tb_system_category where c_code like CONCAT(cCode,'%') and c_code != cCode;       declare continue handler for not found set finished = 1;       open cur;       fetch cur into count;       close cur;       if count is null then           return 0;       else           return count;       end if;   END           4. 從臨時表中查出結果並組合成字符串。 [java]   CREATE FUNCTION category_generateResult(cRand varchar(50)) RETURNS varchar(4000) CHARSET utf8    www.2cto.com   BEGIN   -- 調用的函數或存儲過程:無   -- 被調用於函數或存儲過程:category_findCodesByParentCode       declare finished int default 0;       declare result varchar(20000) default '';       declare thisResult varchar(200) default '';       declare cur cursor for select c_result from tb_system_temp_category_categoryTree where c_rand = cRand;       declare continue handler for not found set finished = 1;       open cur;       fetch cur into thisResult;       while finished = 0 do                      set result = concat(result, thisResult, ',');                  fetch cur into thisResult;       end while;       close cur;          if result is null then           return result;       else           if RIGHT(result,1) = ',' then               set result = SUBSTR(result, 1, CHAR_LENGTH(result) - 1);           end if;           return result;       end if;   END             在MySQL中,不能夠直接使用函數實現遞歸,在上例中,使用存儲過程遞歸調用,將需要的值存儲到臨時表中,然後通過對臨時表進行操作後取得結果。       作者 geloin

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved