mysql - 存储过程中的动态游标

标签 mysql stored-procedures limit database-cursor

我想在游标中使用 LIMIT。游标应该在一个循环内多次使用和更新,每次使用不同的 LIMIT 参数。这里有一些代码:

DELIMITER $$
CREATE PROCEDURE `updateIt`() READS SQL DATA
BEGIN

declare done int(1) default 0;
declare counter int(10) default 0;
declare xabc int(10) default 0;

declare tab1Cursor cursor for select abc from tab1 limit 100000*counter, 100000;
declare continue handler for not found set done=1;

loopCounter: LOOP
    set done = 0;
    open tab1Cursor;
    igmLoop: loop
        fetch tab1Cursor into xabc;
        if done = 1 then leave igmLoop; end if;
        -- do something
    end loop igmLoop;
    close tab1Cursor;

    if (counter = 1039) 
        leave loopCounter;
    end if;
    set counter = counter + 1;

END LOOP loopCounter;
END $$
DELIMITER ;

但是,这不起作用(我也尝试使用 LOOP counterLoop 中的光标)。 Mysql可以处理动态游标吗?

最佳答案

来自MySQL Manual

a cursor cannot be used for a dynamic statement that is prepared and executed with PREPARE and EXECUTE. The statement for a cursor is checked at cursor creation time, so the statement cannot be dynamic.

然而,根据 mysql forums 中的这篇文章,有两种方法:

The first is for cases where absolutely only one user at a time will be running the procedure. A prepare statement can be used to create a view with the dynamic SQL and the cursor can select from this statically-named view. There's almost no performance impact. Unfortunately, these views are also visible to other users (there's no such thing as a temporary view), so this won't work for multiple users.

Analogously, a temporary table can be created in the prepare statement and the cursor can select from the temporary table. Only the current session can see a temporary table, so the multiple user issue is resolved. But this solution can have significant performance impact since a temp table has to be created each time the proc runs.

Bottom line: We still need cursors to be able to be created dynamically!

Here's an example of using a view to pass the table name and column name into a cursor.

DELIMITER // 
DROP PROCEDURE IF EXISTS test_prepare// 

CREATE PROCEDURE test_prepare(IN tablename varchar(255), columnname varchar(50)) 
BEGIN 
DECLARE cursor_end CONDITION FOR SQLSTATE '02000'; 
DECLARE v_column_val VARCHAR(50); 
DECLARE done INT DEFAULT 0; 
DECLARE cur_table CURSOR FOR SELECT * FROM test_prepare_vw; 
DECLARE CONTINUE HANDLER FOR cursor_end SET done = 1; 

SET @query = CONCAT('CREATE VIEW test_prepare_vw as select ', columnname, ' from ', tablename); 
select @query; 
PREPARE stmt from @query; 
EXECUTE stmt; 
DEALLOCATE PREPARE stmt; 

OPEN cur_table; 
FETCH cur_table INTO v_column_val; 
WHILE done = 0 DO 
SELECT v_column_val; 
FETCH cur_table INTO v_column_val; 
END WHILE; 
CLOSE cur_table; 

DROP VIEW test_prepare_vw; 

END; 
// 

DELIMITER ;

关于mysql - 存储过程中的动态游标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7685588/

相关文章:

mysql - 存储过程不存在,即使在创建之后

mysql - 使用 mysql 存储过程获取用户的最后付款月份

mysql - SQL中有哪些查询字符数限制?

mysql - 根据日期限制大表

javascript - 限制元素出现在屏幕之外

mysql - SQL中日期时间数据的区别

mysql - SQL:从带有变量的表中选择

sql-server-2005 - 如何在 where 子句中调用存储过程

mysql - 如何设计一个 MySQL 表来跟踪每个 Assets 的状态以及每个旧状态?

php - while循环中的单选按钮