In the Associative Array, how to loop the records using its count ? for example
declare
type population is table of number index by varchar2(64);
city_population population;
begin
city_population('Samillve') := 200;
city_population('Lindenhurst') := 300;
for i in 1 .. city_population.count
loop
dbms_output.put_line(city_population(i)); -- compiler error
end loop;
end;
/