数据库
首页 > 数据库> > MySQL: cursor

MySQL: cursor

作者:互联网

1、在能够使用游标前,必须声明(定义)它。这个过程实际上没有检索数据,他只是使用select 语句。

2、一旦声明后,必须打开游标以供使用。这个过程用前面定义的select 语句把数据实际检索出来

3、对于填有数据游标,根据需要取出(检索)各行。

4、在结束游标使用时,必须关闭游标

在声明游标后,可根据需要频繁地打开和关闭游标。在游标打开后,可根据需要频繁地执行取操作。

 

CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_cursor`( IN threshold_profit INT, OUT total_count INT )
BEGIN
    DECLARE accumulative_profit INT DEFAULT 0;  # 累计profit
    DECLARE current_profit INT DEFAULT 0;  # 当前cursor对应的profit
    DECLARE accumulative_count INT DEFAULT 0;  # 累计rows
    # Define CURSOR
    DECLARE CURSOR_PROFIT CURSOR FOR SELECT profit FROM fuze ORDER BY profit DESC;
    # Open CURSOR
    OPEN CURSOR_PROFIT;
    
    REPEAT
        FETCH CURSOR_PROFIT INTO current_profit;# INTO后面变量个数次序必须与CURSOR声明的SELECT列数对应
        
        SET accumulative_profit = accumulative_profit + current_profit;# 累计profit
        
        SET accumulative_count = accumulative_count + 1;# 累计rows
        
        UNTIL accumulative_profit > threshold_profit 
    END REPEAT;
    
    CLOSE CURSOR_PROFIT;
    
    SET total_count = accumulative_count;  # 为输出变量赋值
END

 

标签:count,CURSOR,profit,accumulative,游标,cursor,INT,MySQL
来源: https://www.cnblogs.com/dissipate/p/16178415.html