Good day. There are two arrays that I get by querying the database. The first
my $dbquery1 = $db->selectall_arrayref("select * from DPTDAT where ID = 1"); foreach my $rowMPT_DAT1 (@$dbquery1) { my ($f1, $f2, $f3,$f4,$f5,$f6,$f7,$f8,$f9,$f10,$f11,$f12,$f13,$f14) = @$rowMPT_DAT1; } Second
my $dbquery2 = $db->selectall_arrayref("select * from DPTDAT where ID = 2"); foreach my $rowMPT_DAT2 (@$dbquery2) { my ($ff1, $ff2,$ff3,$ff4,$ff5,$ff6,$ff7,$ff8,$ff9,$ff10,$ff11,$ff12,$ff13,$ff14)=@$rowMPT_DAT2;} I need to add, for example, each $f11 and $ff11 Tell $ff11 how to do it better?