Help for this page
my $sth = $dbh->prepare( 'select * from mytable order by col_3' ... while( my $aref = $sth->fetch ) { print "@$aref"; }
my $sth = $dbh->prepare( 'select * from mytable order by ?' ... while( my $aref = $sth->fetch ) { print "@$aref"; }