任何幫助,請這? 我想回到所有那些誰住在法國,然後與那些誰住在BELguim對它們進行比較,如果它們具有相同的名稱或name_done顯示結果INTO子句預計在這SELECT語句
declare
cursor c is select namer from poeple where city = 'France';
c_res c%rowtype;
begin
open c;
loop
fetch c into c_res;
exit when c%notfound;
select * from poeple tw where city = 'BELguim' AND (c_res.namer = tw.namer OR c_res.namer = tw.namer || ' _done');
end loop;
close c;
end;
你確定光標'c'真的必須有''法國''條件嗎?它不應該是'法國'嗎?我覺得有一個'''和一個空間比應該有的多。 – nop77svk 2014-10-29 10:38:18
@ nop77svk是編輯完成 – 2014-10-29 10:41:02