You can loop through that table too. Loop through any table with the for i,v in pairs(table) do ... end notation. (changing the names i and v is useful for each nested loop). For example
for i,v in pairs(supertable) do
for k,w in pairs(subtable) do
print(i)
print(k)
print(w)...