I have a table like this:
TYPE t_sub_totals IS TABLE OF NUMBER INDEX BY VARCHAR2(100);
v_sub_totals t_sub_totals;
Now I want to initialize my table with these 3 values
For Index value '0-25' NUMBER is 0
For Index value '26-49' NUMBER is 0
For Index value '50-100' NUMBER is 0
How to dot this pls?