使用游标循环并将 return 值存储到变量中的存储过程

Stored proc using cursor for looping and storing return value into variable

我的查询应该在遍历 table table_a 的游标时检查 table_b 中是否存在值。如果 table_b 中存在值,则 return 将值存入变量 @yyy.
当我 运行 这个存储过程时,我应该得到一个 returns col2,col3,col1 的值。但它 return 只有 col2, col3.
在这个查询中,当我使用 into @yyy 时,我觉得它没有按需要的方式工作。不确定是什么问题。你能帮忙吗
只需删除 into @yyy 我就可以获得正确的结果,但我需要对变量 @yyy 进行更多更改,这就是为什么我需要将结果存储到其中的原因。

Delimiter $$
DROP PROCEDURE IF EXISTS sp_test3;
CREATE PROCEDURE sp_test3()
BEGIN
DECLARE DONE INT DEFAULT 0;
DECLARE col1 varchar(255);
DECLARE curA CURSOR FOR SELECT  a1 FROM table_a;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET DONE = 1;
OPEN curA;
SET @SQL_TXT = '';
while done = 0 do  
fetch next from CurA into col1;
if done = 0 then
SET @xxx = CONCAT("select b1 into @yyy  from table_b where b1 ='", 
col1,"'");
PREPARE stmt_name FROM @xxx;
EXECUTE stmt_name;
DEALLOCATE PREPARE stmt_name;
SELECT  @yyy;
END IF;
END WHILE;
close curA;
end
$$  

在下面创建 table 个脚本:

      create table table_a(a1 varchar(255));      
      create table table_b(b1 varchar(255));    

      insert into table_a values('col2');
      insert into table_a values('col3');
      insert into table_a values('col5');
      insert into table_a values('col1');

      insert into table_b values('col2');
      insert into table_b values('col3');
      insert into table_b values('col4');
      insert into table_b values('col1');
drop procedure if exists sp_test3;
drop table if exists table_b, table_a;

create table if not exists table_a(a1 varchar(255));
create table if not exists table_b(b1 varchar(255));

insert into table_a values ('col2');
insert into table_a values ('col3');
insert into table_a values ('col5');
insert into table_a values ('col1');

insert into table_b values ('col2');
insert into table_b values ('col3');
insert into table_b values ('col4');
insert into table_b values ('col1');

 CREATE PROCEDURE sp_test3()
 BEGIN
 DECLARE DONE, DONE1 INT DEFAULT 0;
 DECLARE col1 varchar(255);
 DECLARE curA CURSOR FOR SELECT a1 FROM table_a;
 DECLARE CONTINUE HANDLER FOR NOT FOUND SET DONE = 1;
 OPEN curA;
 SET @SQL_TXT = '';
    while done = 0 do  
     fetch next from CurA into col1;
     if done = 0 then
     BEGIN
     DECLARE CONTINUE HANDLER FOR NOT FOUND SET DONE1 = 1;
     SET @xxx = CONCAT("select b1 into @yyy 
                       from table_b
                       where b1 = '", col1, "'");
     PREPARE stmt_name FROM @xxx;
     EXECUTE stmt_name;
     DEALLOCATE PREPARE stmt_name;
     if (DONE1 = 0) THEN
       SELECT @yyy;
     ELSE
       SET DONE1 = 0;
     END IF;
     END;
     END IF;
   END WHILE;
  close curA;
 end;