MySql中游标的定义与使用方式

来源:互联网 发布:百度一下淘宝网裤子 编辑:程序博客网 时间:2024/05/22 11:36

从mysql V5.5开始,进行了一次大的改变,就是将InnoDB作为默认的存储引擎。InnoDB支持事务,而且拥有相关的RDBMS特性:ACID事务支持,数据完整性(支持外键),灾难恢复能力等等。
现在简单总结一下游标的知识。
(一),认识游标(cursor)
就是一个可读的标识,用来标识数据取到什么地方了。
(二),游标特性
1,只读
2,不滚动
3,不敏感的

创建游标

首先在MySql中创建一张数据表:
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. CREATE TABLE IF NOT EXISTS `store` (  
  2.   `id` int(11) NOT NULL AUTO_INCREMENT,  
  3.   `namevarchar(20) NOT NULL,  
  4.   `countint(11) NOT NULL DEFAULT '1',  
  5.   PRIMARY KEY (`id`)  
  6. ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7;  
  7.   
  8. INSERT INTO `store` (`id`, `name`, `count`) VALUES  
  9. (1, 'android', 15),  
  10. (2, 'iphone', 14),  
  11. (3, 'iphone', 20),  
  12. (4, 'android', 5),  
  13. (5, 'android', 13),  
  14. (6, 'iphone', 13);  
我们现在要用存储过程做一个功能,统计iphone的总库存是多少,并把总数输出到控制台。
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. --在windows系统中写存储过程时,如果需要使用declare声明变量,需要添加这个关键字,否则会报错。  
  2. delimiter //  
  3. drop procedure if exists StatisticStore;  
  4. CREATE PROCEDURE StatisticStore()  
  5. BEGIN  
  6.     --创建接收游标数据的变量  
  7.     declare c int;  
  8.     declare n varchar(20);  
  9.     --创建总数变量  
  10.     declare total int default 0;  
  11.     --创建结束标志变量  
  12.     declare done int default false;  
  13.     --创建游标  
  14.     declare cur cursor for select name,count from store where name = 'iphone';  
  15.     --指定游标循环结束时的返回值  
  16.     declare continue HANDLER for not found set done = true;  
  17.     --设置初始值  
  18.     set total = 0;  
  19.     --打开游标  
  20.     open cur;  
  21.     --开始循环游标里的数据  
  22.     read_loop:loop  
  23.     --根据游标当前指向的一条数据  
  24.     fetch cur into n,c;  
  25.     --判断游标的循环是否结束  
  26.     if done then  
  27.         leave read_loop;    --跳出游标循环  
  28.     end if;  
  29.     --获取一条数据时,将count值进行累加操作,这里可以做任意你想做的操作,  
  30.     set total = total + c;  
  31.     --结束游标循环  
  32.     end loop;  
  33.     --关闭游标  
  34.     close cur;  
  35.   
  36.     --输出结果  
  37.     select total;  
  38. END;  
  39. --调用存储过程  
  40. call StatisticStore();  
fetch是获取游标当前指向的数据行,并将指针指向下一行,当游标已经指向最后一行时继续执行会造成游标溢出。使用loop循环游标时,他本身是不会监控是否到最后一条数据了,像下面代码这种写法,就会造成死循环;
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. read_loop:loop  
  2. fetch cur into n,c;  
  3. set total = total+c;  
  4. end loop;  
在MySql中,造成游标溢出时会引发mysql预定义的NOT FOUND错误,所以在上面使用下面的代码指定了当引发not found错误时定义一个continue 的事件,指定这个事件发生时修改done变量的值。
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. declare continue HANDLER for not found set done = true;  
所以在循环时加上了下面这句代码:
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. --判断游标的循环是否结束  
  2. if done then  
  3.     leave read_loop;    --跳出游标循环  
  4. end if;  
如果done的值是true,就结束循环。继续执行下面的代码。

使用方式

游标有三种使用方式:第一种就是上面的实现,使用loop循环;第二种方式如下,使用while循环:
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. drop procedure if exists StatisticStore1;  
  2. CREATE PROCEDURE StatisticStore1()  
  3. BEGIN  
  4.     declare c int;  
  5.     declare n varchar(20);  
  6.     declare total int default 0;  
  7.     declare done int default false;  
  8.     declare cur cursor for select name,count from store where name = 'iphone';  
  9.     declare continue HANDLER for not found set done = true;  
  10.     set total = 0;  
  11.     open cur;  
  12.     fetch cur into n,c;  
  13.     while(not done) do  
  14.         set total = total + c;  
  15.         fetch cur into n,c;  
  16.     end while;  
  17.       
  18.     close cur;  
  19.     select total;  
  20. END;  
  21.   
  22. call StatisticStore1();  
第三种方式是使用repeat执行:
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. drop procedure if exists StatisticStore2;  
  2. CREATE PROCEDURE StatisticStore2()  
  3. BEGIN  
  4.     declare c int;  
  5.     declare n varchar(20);  
  6.     declare total int default 0;  
  7.     declare done int default false;  
  8.     declare cur cursor for select name,count from store where name = 'iphone';  
  9.     declare continue HANDLER for not found set done = true;  
  10.     set total = 0;  
  11.     open cur;  
  12.     repeat  
  13.     fetch cur into n,c;  
  14.     if not done then  
  15.         set total = total + c;  
  16.     end if;  
  17.     until done end repeat;  
  18.     close cur;  
  19.     select total;  
  20. END;  
  21.   
  22. call StatisticStore2();  

游标嵌套


在mysql中,每个begin end 块都是一个独立的scope区域,由于MySql中同一个error的事件只能定义一次,如果多定义的话在编译时会提示Duplicate handler declared in the same block。
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. drop procedure if exists StatisticStore3;  
  2. CREATE PROCEDURE StatisticStore3()  
  3. BEGIN  
  4.     declare _n varchar(20);  
  5.     declare done int default false;  
  6.     declare cur cursor for select name from store group by name;  
  7.     declare continue HANDLER for not found set done = true;  
  8.     open cur;  
  9.     read_loop:loop  
  10.     fetch cur into _n;  
  11.     if done then  
  12.         leave read_loop;  
  13.     end if;  
  14.     begin  
  15.         declare c int;  
  16.         declare n varchar(20);  
  17.         declare total int default 0;  
  18.         declare done int default false;  
  19.         declare cur cursor for select name,count from store where name = 'iphone';  
  20.         declare continue HANDLER for not found set done = true;  
  21.         set total = 0;  
  22.         open cur;  
  23.         iphone_loop:loop  
  24.         fetch cur into n,c;  
  25.         if done then  
  26.             leave iphone_loop;  
  27.         end if;  
  28.         set total = total + c;  
  29.         end loop;  
  30.         close cur;  
  31.         select _n,n,total;  
  32.     end;  
  33.     begin  
  34.             declare c int;  
  35.             declare n varchar(20);  
  36.             declare total int default 0;  
  37.             declare done int default false;  
  38.             declare cur cursor for select name,count from store where name = 'android';  
  39.             declare continue HANDLER for not found set done = true;  
  40.             set total = 0;  
  41.             open cur;  
  42.             android_loop:loop  
  43.             fetch cur into n,c;  
  44.             if done then  
  45.                 leave android_loop;  
  46.             end if;  
  47.             set total = total + c;  
  48.             end loop;  
  49.             close cur;  
  50.         select _n,n,total;  
  51.     end;  
  52.     begin  
  53.       
  54.     end;  
  55.     end loop;  
  56.     close cur;  
  57. END;  
  58.   
  59. call StatisticStore3();  
上面就是实现一个嵌套循环,当然这个例子比较牵强。凑合看看就行。。

动态SQL

Mysql 支持动态SQL的功能,
[sql] view plain copy 在CODE上查看代码片派生到我的代码片
  1. set @sqlStr='select * from table where condition1 = ?';  
  2. prepare s1 for @sqlStr;  
  3. --如果有多个参数用逗号分隔  
  4. execute s1 using @condition1;  
  5. --手工释放,或者是 connection 关闭时, server 自动回收  
  6. deallocate prepare s1; 

循环游标的使用

While循环:WHILE expression DO    Statements;END WHILE//实例DECLARE num INT;DECLARE my_string  VARCHAR(255);SET num =1;SET str ='';  WHILE num  < span>10DOSET  my_string =CONCAT(my_string,num,',');SET  num = num +1;END WHILE;
loop循环游标:DELIMITER $$  DROP PROCEDURE IF EXITS cursor_example$$  CREATE PROCEDURE cursor_example()       READS SQL DATA  BEGIN       DECLARE l_employee_id INT;       DECLARE l_salary NUMERIC(8,2);       DECLARE l_department_id INT;       DECLARE done INT DEFAULT 0;       DECLARE cur1 CURSOR FOR SELECT employee_id, salary, department_id FROM employees;       DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;       OPEN cur1;       emp_loop: LOOP           FETCH cur1 INTO l_employee_id, l_salary, l_department_id;           IF done=1 THEN               LEAVE emp_loop;           END IF;       END LOOP emp_loop;       CLOSE cur1;  END$$  DELIMITER ; 

repeat循环游标:/*创建过程*/DELIMITER //DROP PROCEDURE IF EXISTS test //CREATE PROCEDURE test()BEGIN    DECLARE done INT DEFAULT 0;    DECLARE a VARCHAR(200) DEFAULT '';    DECLARE c VARCHAR(200) DEFAULT '';    DECLARE mycursor CURSOR FOR SELECT  fusername FROM uchome_friend;    DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;    OPEN mycursor;    REPEAT         FETCH mycursor INTO a;        IF NOT done THEN            SET c=CONCAT(c,a);/*字符串相加*/        END IF;    UNTIL done END REPEAT;    CLOSE mycursor;    SELECT c;END //DELIMITER ;

/*******************************************循环语句************************************************//*(1).WHILE循环*/ [ label: ]   WHILE  expression DO statements END   WHILE   [ label ] ;/*(2).LOOP循环*/ [ label: ]  LOOP  statements  END  LOOP  [ label ] ;/*(3).REPEAT UNTIL循环*/ [ label: ]  REPEAT statements UNTIL expression END  REPEAT  [ label ] ;


0 0
原创粉丝点击