how can fetch record from query with out using cursor if we have multiple results are there can we do this like the following code
FOR r IN (SELECT a,b,c FROM tabel WHERE a=1)
LOOP
SHOW (r.a);
END LOOP;
i want to do this with cursor because this condition happen inside another cursor is it possible to do this with our cursor or declare new cursor inside existing cursor?