List of ... 

my @keys = keys %$h;
foreach my $key ( @keys ) {
    print qq{* $key};
}
my @columns = keys %{$h->{$keys[0]}};
foreach my $col ( @columns ) {
    print qq{* $col};
}