Bạn có thể sử dụng con trỏ để lấy từng REPORT_QUERY
trên CT
và thực thi điều đó bằng cách sử dụng các câu lệnh đã chuẩn bị sẵn:
delimiter $$
drop procedure if exists run_queries$$
create procedure run_queries()
begin
declare s_query varchar(255);
declare done bool default false;
declare c_queries cursor for
select REPORT_QUERY from CT;
declare continue handler for not found set done = true;
open c_queries;
read_loop: loop
fetch c_queries into s_query;
if done then
leave read_loop;
end if;
-- run the query
set @sql = s_query;
prepare stmt from @sql;
execute stmt;
deallocate prepare stmt;
end loop;
end$$
Sau khi tạo thủ tục, bạn có thể gọi như sau:
gọi run_queries ();
Vậy là xong.