Help for this page

Select Code to Download


  1. or download this
    create table Names (
       the_key    int PRIMARY KEY,
       last_name  varchar(32),
       first_name varchar(32)
    )
    
  2. or download this
    # Setup code
    my $SortField = 'last_name'; # could be 'first_name'
    ...
    .         "ORDER BY $SortField "
    .         "LIMIT    $PageSize ";
    my $results = $db->selectall_arrayref($SQL);