in reply to fetchrow_array does not yield the same results as the sql query by itself does.
Try fetching all of the data and dumping it, to confirm that DBI is really not providing it:
If that still fails it is possible that some of the characters being copied + pasted from the debug output to your other interface are not being included (or included correctly).. but the query you reported wouldn't make that my first guess.my $data = $dbh->selectall_arrayref($sql); use Data::Dumper; print STDERR Dumper($data);
|
|---|