Help for this page

Select Code to Download


  1. or download this
    Rk::M->set_sql(maxid => q(select max(m) from m));
    my $max = +(Rk::M->search_maxid)[0]->{'max(m)'};
    
  2. or download this
    my $max = $dbh->selectrow_array('select max(m) from m');