SET SERVEROUTPUT ON
DECLARE
TYPE country_tab_type IS
TABLE OF VARCHAR2(50) INDEX BY VARCHAR2(2);
t_country country_tab_type;
BEGIN --Array füllen, Index ist hier eindeutig durch Länder ISO
t_country('AT') := 'Austria';
t_country('FR') := 'France';
t_country('DE') := 'Germany'; -- Welches Land verbirgt sich hinter dem ISO code "DE"
dbms_output.put_line('ISO code "DE" = ' || t_country('DE'));
END;
/