Help for this page

Select Code to Download


  1. or download this
      SELECT
        group, somedata
    ...
        table
      ORDER BY
        group, somedata
    
  2. or download this
      my $lastgroup = undef;
      while ( my $row = $sth->fetchrow_arrayref() ) {
    ...
        }
        print( "  " . $row->[1] . "\n" );
      }
    
  3. or download this
      my $lastgroup = undef;
      while ( my $row = $sth->fetchrow_arrayref() ) {
    ...
        }
        print( "  " . $row->[1] . "\n" );
      }