in reply to Re^2: How to stuff space separated column into Hash
in thread How to stuff space separated column into Hash
I think I'm all set
while ( my @row = $sth->fetchrow_array() ) { print ">@row<\n"; my %by_month = split ' ', $row[1]; $HoH{$row[0]} = \%by_month;
This accomplishes my objective. Thanks again.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to stuff space separated column into Hash
by Marshall (Canon) on Aug 29, 2016 at 21:51 UTC |