Help for this page

Select Code to Download


  1. or download this
    my $sql = "select id, account_number, CONVERT(VARCHAR(10),date,101) as
    + date
                    from my_table where id <> ''
                    order by date desc";
    
  2. or download this
    my @columns = qw( id account_number date );
    my $results = $self->_all_data($sql, \@columns);
    
  3. or download this
    my $results = $self->_all_data($sql);