テーブルを調べて上位 10 件の結果をすべて収集する手順を作成しています。カーソルを使用して結果を取得しています。結果を印刷する方法に少しこだわっています。これらの結果を取得するために select ステートメントを使用しましたが、エラーがあると言われました。
どんな助けでも大歓迎です。ありがとう。
create procedure plant_list()
begin
declare v_plant_id integer(5);
declare v_common_name varchar(30);
declare v_scientific_name varchar(20);
declare finished boolean default false;
declare cur_top_ten cursor for
select P.plant_id, common_name, concat(genus, ' ', species)
from plants P
join plant_taxonomy PT on P.plant_id = PT.plant_id
order by list_price desc
limit 10
;
declare continue handler for not found set finished = true;
open cur_top_ten;
curloop: loop
fetch cur_top_ten into v_plant_id, v_common_name, v_scientific_name;
if finished then
close cur_top_ten;
set finished = false;
leave curloop;
end if
select v_plant_id, v_common_name, v_scientific_name;
end loop curloop;
end;
#